lib/xcake/dsl/target.rb in xcake-0.8.12 vs lib/xcake/dsl/target.rb in xcake-0.8.13

- old
+ new

@@ -40,10 +40,15 @@ # @return [Array<BuildPhase>] the list # of build phases for the project. # attr_accessor :build_phases + # @return [Array<BuildRule>] the list + # of build rules for the project. + # + attr_accessor :build_rules + # @!group File patterns # # File patterns do not support traversing the parent directory ( `..` ). # File patterns may contain the following wildcard patterns: @@ -187,9 +192,10 @@ # end # def initialize @pinned_build_phases = [] @build_phases = [] + @build_rules = [] @exclude_files = [] @linked_targets = [] @system_libraries = [] @target_dependencies = [] @schemes = []