xcoder 0.1.12 → 0.1.13

Sign up to get free protection for your applications and to get access to all the features.
@@ -132,7 +132,7 @@ module Xcode
132
132
  # to this individual file.
133
133
  #
134
134
  def add_build_file(file,settings = {})
135
- find_file_by = file.name || file.path
135
+ find_file_by = file.path || file.name
136
136
  unless build_file(find_file_by)
137
137
  new_build_file = @registry.add_object BuildFile.buildfile(file.identifier,settings)
138
138
  @properties['files'] << new_build_file.identifier
@@ -10,29 +10,45 @@ module Xcode
10
10
  # Using the sytem tool plutil, the specified project file is parsed and
11
11
  # converted to XML, and then converted into a ruby hash object.
12
12
  #
13
- def parse path
14
- xml = `plutil -convert xml1 -o - "#{path}"`
15
- Plist::parse_xml(xml)
13
+ def parse(path)
14
+ registry = Plist.parse_xml open_project_file(path)
15
+
16
+ raise "Failed to correctly parse the project file #{path}" unless registry
17
+
18
+ registry
16
19
  end
17
20
 
18
21
  #
19
22
  # Save the outputed string data to the specified project file path and then
20
23
  # formats that data to be prettier than the default output.
21
24
  #
22
- def save path,data
25
+ def save(path,data)
23
26
 
24
27
  File.open(path,'w') do |file|
25
28
  file.puts data
26
29
  end
27
30
 
28
- #
29
-
30
31
  if File.exists?(path)
31
32
  `pl -input #{path} -output #{path}`
32
33
  end
33
34
 
34
- end
35
-
35
+ end
36
+
37
+ private
38
+
39
+ #
40
+ # @return [String] an XML version of the project file or the error message
41
+ # that the file could not be found.
42
+ #
43
+ # @example Error Message
44
+ #
45
+ # Project.xcodeproj/project.pbproj file does not exist or is not
46
+ # readable or is not a regular file.
47
+ #
48
+ def open_project_file(path)
49
+ `plutil -convert xml1 -o - "#{path}"`
50
+ end
51
+
36
52
  end
37
53
 
38
54
  end
data/lib/xcode/project.rb CHANGED
@@ -55,16 +55,23 @@ module Xcode
55
55
  def initialize(path, sdk=nil)
56
56
  @sdk = sdk || "iphoneos" # FIXME: should support OSX/simulator too
57
57
  @path = File.expand_path path
58
- @schemes = []
58
+ @schemes = nil
59
59
  @groups = []
60
60
  @name = File.basename(@path).gsub(/\.xcodeproj/,'')
61
61
 
62
62
  # Parse the Xcode project file and create the registry
63
63
 
64
64
  @registry = parse_pbxproj
65
- @project = Xcode::Resource.new @registry.root, @registry
66
-
67
- @schemes = parse_schemes
65
+ raise "Unable to parse project at #{@path}" if @registry.nil?
66
+ @project = Xcode::Resource.new @registry.root, @registry
67
+ end
68
+
69
+ #
70
+ # @return [Array<Xcode::Scheme>] available schemes for the project
71
+ #
72
+ def schemes
73
+ return @schemes unless @schemes.nil?
74
+ @schemes = Xcode::Scheme.find_in_path @path
68
75
  end
69
76
 
70
77
 
@@ -215,7 +222,7 @@ module Xcode
215
222
  # @toodo Save the workspace when the project is saved
216
223
  # FileUtils.cp_r "#{path}/project.xcworkspace", "#{path}/project.xcworkspace"
217
224
 
218
- Xcode::PLUTILProjectParser.save "#{@path}/project.pbxproj", to_xcplist
225
+ Xcode::PLUTILProjectParser.save "#{path}/project.pbxproj", to_xcplist
219
226
 
220
227
  end
221
228
 
@@ -229,8 +236,8 @@ module Xcode
229
236
  # @return [Scheme] the specific scheme that matches the name specified
230
237
  #
231
238
  def scheme(name)
232
- scheme = @schemes.select {|t| t.name == name.to_s}.first
233
- raise "No such scheme #{name}, available schemes are #{@schemes.map {|t| t.name}.join(', ')}" if scheme.nil?
239
+ scheme = schemes.select {|t| t.name == name.to_s}.first
240
+ raise "No such scheme #{name}, available schemes are #{schemes.map {|t| t.name}.join(', ')}" if scheme.nil?
234
241
  yield scheme if block_given?
235
242
  scheme
236
243
  end
@@ -341,24 +348,6 @@ module Xcode
341
348
 
342
349
  private
343
350
 
344
- #
345
- # Parse all the scheme files that can be found within the project. Schemes
346
- # can be defined as `shared` schemes and then `user` specific schemes. Parsing
347
- # the schemes will load the shared ones and then the current acting user's
348
- # schemes.
349
- #
350
- # @return [Array<Scheme>] the shared schemes and user specific schemes found
351
- # within the projet at the path defined for schemes.
352
- #
353
- def parse_schemes
354
- shared_schemes = Dir["#{@path}/xcshareddata/xcschemes/*.xcscheme"]
355
- user_specific_schemes = Dir["#{@path}/xcuserdata/#{ENV['USER']}.xcuserdatad/xcschemes/*.xcscheme"]
356
-
357
- (shared_schemes + user_specific_schemes).map do |scheme|
358
- Xcode::Scheme.new(self, scheme)
359
- end
360
- end
361
-
362
351
  #
363
352
  # Using the sytem tool plutil, the specified project file is parsed and
364
353
  # converted to JSON, which is then converted to a hash object. This content
data/lib/xcode/scheme.rb CHANGED
@@ -6,10 +6,10 @@ module Xcode
6
6
  # For the purposes of Xcoder, we want to be able to build and test
7
7
  # The scheme's build action only describes a target, so we need to look at launch for the config
8
8
  class Scheme
9
- attr_reader :project, :path, :name, :launch, :test
10
- def initialize(project, path)
11
- @project = project
9
+ attr_reader :path, :name, :launch, :test
10
+ def initialize(path)
12
11
  @path = File.expand_path(path)
12
+ @root = File.expand_path "#{@path}/../../../../"
13
13
  @name = File.basename(path).gsub(/\.xcscheme$/,'')
14
14
  doc = Nokogiri::XML(open(@path))
15
15
 
@@ -17,10 +17,32 @@ module Xcode
17
17
  @test = parse_action(doc, 'test')
18
18
  end
19
19
 
20
+ # def project
21
+ # launch.target.project
22
+ # end
23
+
20
24
  def builder
21
25
  Xcode::Builder.new(self)
22
26
  end
23
27
 
28
+ #
29
+ # Parse all the scheme files that can be found in the given project or workspace. Schemes
30
+ # can be defined as `shared` schemes and then `user` specific schemes. Parsing
31
+ # the schemes will load the shared ones and then the current acting user's
32
+ # schemes.
33
+ #
34
+ # @return [Array<Scheme>] the shared schemes and user specific schemes found
35
+ # within the projet/workspace at the path defined for schemes.
36
+ #
37
+ def self.find_in_path(path)
38
+ shared_schemes = Dir["#{path}/xcshareddata/xcschemes/*.xcscheme"]
39
+ user_specific_schemes = Dir["#{path}/xcuserdata/#{ENV['USER']}.xcuserdatad/xcschemes/*.xcscheme"]
40
+
41
+ (shared_schemes + user_specific_schemes).map do |scheme|
42
+ Xcode::Scheme.new(scheme)
43
+ end
44
+ end
45
+
24
46
  private
25
47
 
26
48
  def parse_action(doc, action_name)
@@ -28,8 +50,11 @@ module Xcode
28
50
  buildableReference = action.xpath('BuildableProductRunnable/BuildableReference').first
29
51
  return nil if buildableReference.nil?
30
52
 
31
- target_name = buildableReference['BlueprintName']
32
- @project.target(target_name).config(action['buildConfiguration'])
53
+ project_name = buildableReference['ReferencedContainer'].gsub(/^container:/,'')
54
+ project = Xcode.project "#{@root}/#{project_name}"
55
+ target_name = buildableReference['BlueprintName']
56
+
57
+ project.target(target_name).config(action['buildConfiguration'])
33
58
  end
34
59
 
35
60
  end
@@ -18,7 +18,6 @@ module Xcode
18
18
  class InvalidStateException < StandardError; end
19
19
 
20
20
  def initialize
21
- @debug = false
22
21
  @exit_code = 0
23
22
  @suites = []
24
23
  @formatters = []
data/lib/xcode/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Xcode
2
- VERSION = "0.1.12"
2
+ VERSION = "0.1.13"
3
3
  end
@@ -5,14 +5,14 @@ module Xcode
5
5
  class Workspace
6
6
  attr_reader :projects, :name, :path
7
7
  def initialize(path)
8
- path = "#{path}.xcworkspace" unless path=~/\.xcworkspace/
9
- path = "#{path}/contents.xcworkspacedata" unless path=~/xcworkspacedata$/
8
+ path = "#{path}.xcworkspace" unless path=~/\.xcworkspace/
10
9
 
11
- @name = File.basename(path.gsub(/\.xcworkspace\/contents\.xcworkspacedata/,''))
10
+ @name = File.basename(path.gsub(/\.xcworkspace/,''))
12
11
  @projects = []
13
- @path = File.expand_path path
12
+ @schemes = nil
13
+ @path = File.expand_path path
14
14
 
15
- doc = Nokogiri::XML(open(@path))
15
+ doc = Nokogiri::XML(open("#{@path}/contents.xcworkspacedata"))
16
16
  doc.search("FileRef").each do |file|
17
17
  location = file["location"]
18
18
  if matcher = location.match(/^group:(.+)$/)
@@ -22,6 +22,39 @@ module Xcode
22
22
  end
23
23
  end
24
24
 
25
+ #
26
+ # @return [Array<Xcode::Scheme>] available schemes for the workspace
27
+ #
28
+ def schemes
29
+ return @schemes unless @schemes.nil?
30
+ @schemes = Xcode::Scheme.find_in_path @path
31
+ end
32
+
33
+ #
34
+ # Return the scheme with the specified name. Raises an error if no schemes
35
+ # match the specified name.
36
+ #
37
+ # @note if two schemes match names, the first matching scheme is returned.
38
+ #
39
+ # @param [String] name of the specific scheme
40
+ # @return [Scheme] the specific scheme that matches the name specified
41
+ #
42
+ def scheme(name)
43
+ scheme = schemes.select {|t| t.name == name.to_s}.first
44
+ raise "No such scheme #{name}, available schemes are #{schemes.map {|t| t.name}.join(', ')}" if scheme.nil?
45
+ yield scheme if block_given?
46
+ scheme
47
+ end
48
+
49
+ #
50
+ # Return the names project. Raises an error if no projects
51
+ # match the specified name.
52
+ #
53
+ # @note if two projects match names, the first matching scheme is returned.
54
+ #
55
+ # @param [String] name of the specific scheme
56
+ # @return [Project] the specific project that matches the name specified
57
+ #
25
58
  def project(name)
26
59
  project = @projects.select {|c| c.name == name.to_s}.first
27
60
  raise "No such project #{name}, available projects are #{@projects.map {|c| c.name}.join(', ')}" if project.nil?
@@ -37,7 +70,7 @@ module Xcode
37
70
  end
38
71
 
39
72
  def workspace_root
40
- File.dirname(File.dirname(@path))
73
+ File.dirname(@path)
41
74
  end
42
75
  end
43
76
  end
data/lib/xcoder.rb CHANGED
@@ -131,7 +131,11 @@ module Xcode
131
131
  projects = []
132
132
  Find.find(dir) do |path|
133
133
  if path=~/\.xcworkspace$/ and !(path=~/\.xcodeproj\//)
134
- projects << Xcode::Workspace.new(path)
134
+ begin
135
+ projects << Xcode::Workspace.new(path)
136
+ rescue => e
137
+ puts "Skipping #{path} as it raised an error: #{e.message}"
138
+ end
135
139
  end
136
140
  end
137
141
  projects
@@ -141,7 +145,11 @@ module Xcode
141
145
  projects = []
142
146
  Find.find(dir) do |path|
143
147
  if path=~/(.*)\.xcodeproj$/
144
- projects << Xcode::Project.new(path)
148
+ begin
149
+ projects << Xcode::Project.new(path)
150
+ rescue => e
151
+ puts "Skipping #{path} as it raised an error: #{e.message}"
152
+ end
145
153
  end
146
154
  end
147
155
  projects
@@ -1,1330 +1,1017 @@
1
- // !$*UTF8*$!"
1
+ // !$*UTF8*$!
2
2
  {
3
- "archiveVersion" = "1";
4
- "classes" = {
5
-
6
- };
7
- "objectVersion" = "46";
8
- "objects" = {
9
- "2574D65B0D2FFDB5D0372B4A" = {
10
- "fileRef" = "7165D454146B4EA100DE2F0E";
11
- "isa" = "PBXBuildFile";
12
- };
13
- "28C60920A77AB174A952864D" = {
14
- "fileRef" = "7165D458146B4EA100DE2F0E";
15
- "isa" = "PBXBuildFile";
16
- };
17
- "57F7ADA229AE63B1ADB8DA79" = {
18
- "buildActionMask" = "2147483647";
19
- "files" = (
20
-
21
- );
22
- "isa" = "PBXResourcesBuildPhase";
23
- "runOnlyForDeploymentPostprocessing" = "0";
24
- };
25
- "630E8768C91375E025BDAB9D" = {
26
- "explicitFileType" = "wrapper.application";
27
- "includeInIndex" = "0";
28
- "isa" = "PBXFileReference";
29
- "path" = "Specs.app";
30
- "sourceTree" = "BUILT_PRODUCTS_DIR";
31
- };
32
- "70F2C1C35C0D60D44412B5D5" = {
33
- "isa" = "PBXFileReference";
34
- "lastKnownFileType" = "wrapper.framework";
35
- "name" = "CFNetwork.framework";
36
- "path" = "System/Library/Frameworks/CFNetwork.framework";
37
- "sourceTree" = "SDKROOT";
38
- };
39
- "7147F902153E347700763224" = {
40
- "buildActionMask" = "2147483647";
41
- "files" = (
42
- "7147F913153E347700763224"
43
- );
44
- "isa" = "PBXSourcesBuildPhase";
45
- "runOnlyForDeploymentPostprocessing" = "0";
46
- };
47
- "7147F903153E347700763224" = {
48
- "buildActionMask" = "2147483647";
49
- "files" = (
50
- "7147F908153E347700763224",
51
- "7147F909153E347700763224",
52
- "7147F90A153E347700763224"
53
- );
54
- "isa" = "PBXFrameworksBuildPhase";
55
- "runOnlyForDeploymentPostprocessing" = "0";
56
- };
57
- "7147F904153E347700763224" = {
58
- "buildActionMask" = "2147483647";
59
- "files" = (
60
- "7147F910153E347700763224"
61
- );
62
- "isa" = "PBXResourcesBuildPhase";
63
- "runOnlyForDeploymentPostprocessing" = "0";
64
- };
65
- "7147F905153E347700763224" = {
66
- "buildActionMask" = "2147483647";
67
- "files" = (
68
-
69
- );
70
- "inputPaths" = (
71
-
72
- );
73
- "isa" = "PBXShellScriptBuildPhase";
74
- "outputPaths" = (
75
-
76
- );
77
- "runOnlyForDeploymentPostprocessing" = "0";
78
- "shellPath" = "/bin/sh";
79
- "shellScript" = "# Run the unit tests in this test bundle.\n\"${SYSTEM_DEVELOPER_DIR}/Tools/RunUnitTests\"\n";
80
- };
81
- "7147F906153E347700763224" = {
82
- "buildConfigurationList" = "7147F915153E347700763224";
83
- "buildPhases" = (
84
- "7147F902153E347700763224",
85
- "7147F903153E347700763224",
86
- "7147F904153E347700763224",
87
- "7147F905153E347700763224"
88
- );
89
- "buildRules" = (
90
-
91
- );
92
- "dependencies" = (
93
-
94
- );
95
- "isa" = "PBXNativeTarget";
96
- "name" = "ApplicationTests";
97
- "productName" = "ApplicationTests";
98
- "productReference" = "7147F907153E347700763224";
99
- "productType" = "com.apple.product-type.bundle";
100
- };
101
- "7147F907153E347700763224" = {
102
- "explicitFileType" = "wrapper.cfbundle";
103
- "includeInIndex" = "0";
104
- "isa" = "PBXFileReference";
105
- "path" = "ApplicationTests.octest";
106
- "sourceTree" = "BUILT_PRODUCTS_DIR";
107
- };
108
- "7147F908153E347700763224" = {
109
- "fileRef" = "7165D46C146B4EA100DE2F0E";
110
- "isa" = "PBXBuildFile";
111
- };
112
- "7147F909153E347700763224" = {
113
- "fileRef" = "7165D454146B4EA100DE2F0E";
114
- "isa" = "PBXBuildFile";
115
- };
116
- "7147F90A153E347700763224" = {
117
- "fileRef" = "7165D456146B4EA100DE2F0E";
118
- "isa" = "PBXBuildFile";
119
- };
120
- "7147F90B153E347700763224" = {
121
- "children" = (
122
- "7147F911153E347700763224",
123
- "7147F912153E347700763224",
124
- "7147F90C153E347700763224"
125
- );
126
- "isa" = "PBXGroup";
127
- "path" = "ApplicationTests";
128
- "sourceTree" = "<group>";
129
- };
130
- "7147F90C153E347700763224" = {
131
- "children" = (
132
- "7147F90D153E347700763224",
133
- "7147F90E153E347700763224",
134
- "7147F914153E347700763224"
135
- );
136
- "isa" = "PBXGroup";
137
- "name" = "Supporting Files";
138
- "sourceTree" = "<group>";
139
- };
140
- "7147F90D153E347700763224" = {
141
- "isa" = "PBXFileReference";
142
- "lastKnownFileType" = "text.plist.xml";
143
- "path" = "ApplicationTests-Info.plist";
144
- "sourceTree" = "<group>";
145
- };
146
- "7147F90E153E347700763224" = {
147
- "children" = (
148
- "7147F90F153E347700763224"
149
- );
150
- "isa" = "PBXVariantGroup";
151
- "name" = "InfoPlist.strings";
152
- "sourceTree" = "<group>";
153
- };
154
- "7147F90F153E347700763224" = {
155
- "isa" = "PBXFileReference";
156
- "lastKnownFileType" = "text.plist.strings";
157
- "name" = "en";
158
- "path" = "en.lproj/InfoPlist.strings";
159
- "sourceTree" = "<group>";
160
- };
161
- "7147F910153E347700763224" = {
162
- "fileRef" = "7147F90E153E347700763224";
163
- "isa" = "PBXBuildFile";
164
- };
165
- "7147F911153E347700763224" = {
166
- "isa" = "PBXFileReference";
167
- "lastKnownFileType" = "sourcecode.c.h";
168
- "path" = "ApplicationTests.h";
169
- "sourceTree" = "<group>";
170
- };
171
- "7147F912153E347700763224" = {
172
- "isa" = "PBXFileReference";
173
- "lastKnownFileType" = "sourcecode.c.objc";
174
- "path" = "ApplicationTests.m";
175
- "sourceTree" = "<group>";
176
- };
177
- "7147F913153E347700763224" = {
178
- "fileRef" = "7147F912153E347700763224";
179
- "isa" = "PBXBuildFile";
180
- };
181
- "7147F914153E347700763224" = {
182
- "isa" = "PBXFileReference";
183
- "lastKnownFileType" = "sourcecode.c.h";
184
- "path" = "ApplicationTests-Prefix.pch";
185
- "sourceTree" = "<group>";
186
- };
187
- "7147F915153E347700763224" = {
188
- "buildConfigurations" = (
189
- "7147F916153E347700763224",
190
- "7147F917153E347700763224"
191
- );
192
- "defaultConfigurationIsVisible" = "0";
193
- "isa" = "XCConfigurationList";
194
- };
195
- "7147F916153E347700763224" = {
196
- "buildSettings" = {
197
- "BUNDLE_LOADER" = "$(BUILT_PRODUCTS_DIR)/TestProject.app/TestProject";
198
- "CLANG_ENABLE_OBJC_ARC" = "YES";
199
- "FRAMEWORK_SEARCH_PATHS" = (
200
- "$(SDKROOT)/Developer/Library/Frameworks",
201
- "$(DEVELOPER_LIBRARY_DIR)/Frameworks"
202
- );
203
- "GCC_PRECOMPILE_PREFIX_HEADER" = "YES";
204
- "GCC_PREFIX_HEADER" = "ApplicationTests/ApplicationTests-Prefix.pch";
205
- "GCC_WARN_UNINITIALIZED_AUTOS" = "YES";
206
- "INFOPLIST_FILE" = "ApplicationTests/ApplicationTests-Info.plist";
207
- "IPHONEOS_DEPLOYMENT_TARGET" = "5.1";
208
- "PRODUCT_NAME" = "$(TARGET_NAME)";
209
- "TEST_HOST" = "$(BUNDLE_LOADER)";
210
- "WRAPPER_EXTENSION" = "octest";
211
- };
212
- "isa" = "XCBuildConfiguration";
213
- "name" = "Debug";
214
- };
215
- "7147F917153E347700763224" = {
216
- "buildSettings" = {
217
- "CLANG_ENABLE_OBJC_ARC" = "YES";
218
- "FRAMEWORK_SEARCH_PATHS" = (
219
- "$(SDKROOT)/Developer/Library/Frameworks",
220
- "$(DEVELOPER_LIBRARY_DIR)/Frameworks"
221
- );
222
- "GCC_PRECOMPILE_PREFIX_HEADER" = "YES";
223
- "GCC_PREFIX_HEADER" = "ApplicationTests/ApplicationTests-Prefix.pch";
224
- "GCC_WARN_UNINITIALIZED_AUTOS" = "YES";
225
- "INFOPLIST_FILE" = "ApplicationTests/ApplicationTests-Info.plist";
226
- "IPHONEOS_DEPLOYMENT_TARGET" = "5.1";
227
- "PRODUCT_NAME" = "$(TARGET_NAME)";
228
- "WRAPPER_EXTENSION" = "octest";
229
- };
230
- "isa" = "XCBuildConfiguration";
231
- "name" = "Release";
232
- };
233
- "7147F918153E34F900763224" = {
234
- "children" = (
235
- "7147F924153E350400763224",
236
- "7147F919153E34F900763224",
237
- "7147F91A153E34F900763224",
238
- "7147F91E153E34F900763224",
239
- "7147F91F153E34F900763224"
240
- );
241
- "isa" = "PBXGroup";
242
- "path" = "LogicTests";
243
- "sourceTree" = "<group>";
244
- };
245
- "7147F919153E34F900763224" = {
246
- "fileEncoding" = "4";
247
- "isa" = "PBXFileReference";
248
- "lastKnownFileType" = "sourcecode.c.h";
249
- "path" = "AnotherTest.h";
250
- "sourceTree" = "<group>";
251
- };
252
- "7147F91A153E34F900763224" = {
253
- "fileEncoding" = "4";
254
- "isa" = "PBXFileReference";
255
- "lastKnownFileType" = "sourcecode.c.objc";
256
- "path" = "AnotherTest.m";
257
- "sourceTree" = "<group>";
258
- };
259
- "7147F91B153E34F900763224" = {
260
- "children" = (
261
- "7147F91C153E34F900763224"
262
- );
263
- "isa" = "PBXVariantGroup";
264
- "name" = "InfoPlist.strings";
265
- "sourceTree" = "<group>";
266
- };
267
- "7147F91C153E34F900763224" = {
268
- "isa" = "PBXFileReference";
269
- "lastKnownFileType" = "text.plist.strings";
270
- "name" = "en";
271
- "path" = "en.lproj/InfoPlist.strings";
272
- "sourceTree" = "<group>";
273
- };
274
- "7147F91D153E34F900763224" = {
275
- "fileEncoding" = "4";
276
- "isa" = "PBXFileReference";
277
- "lastKnownFileType" = "text.plist.xml";
278
- "path" = "TestProjectTests-Info.plist";
279
- "sourceTree" = "<group>";
280
- };
281
- "7147F91E153E34F900763224" = {
282
- "fileEncoding" = "4";
283
- "isa" = "PBXFileReference";
284
- "lastKnownFileType" = "sourcecode.c.h";
285
- "path" = "TestProjectTests.h";
286
- "sourceTree" = "<group>";
287
- };
288
- "7147F91F153E34F900763224" = {
289
- "fileEncoding" = "4";
290
- "isa" = "PBXFileReference";
291
- "lastKnownFileType" = "sourcecode.c.objc";
292
- "path" = "TestProjectTests.m";
293
- "sourceTree" = "<group>";
294
- };
295
- "7147F920153E34F900763224" = {
296
- "fileRef" = "7147F91A153E34F900763224";
297
- "isa" = "PBXBuildFile";
298
- };
299
- "7147F921153E34F900763224" = {
300
- "fileRef" = "7147F91B153E34F900763224";
301
- "isa" = "PBXBuildFile";
302
- };
303
- "7147F922153E34F900763224" = {
304
- "fileRef" = "7147F91D153E34F900763224";
305
- "isa" = "PBXBuildFile";
306
- };
307
- "7147F923153E34F900763224" = {
308
- "fileRef" = "7147F91F153E34F900763224";
309
- "isa" = "PBXBuildFile";
310
- };
311
- "7147F924153E350400763224" = {
312
- "children" = (
313
- "7147F91B153E34F900763224",
314
- "7147F91D153E34F900763224"
315
- );
316
- "isa" = "PBXGroup";
317
- "name" = "Supporting Files";
318
- "sourceTree" = "<group>";
319
- };
320
- "7165D445146B4EA100DE2F0E" = {
321
- "children" = (
322
- "7165D45A146B4EA100DE2F0E",
323
- "7147F918153E34F900763224",
324
- "7147F90B153E347700763224",
325
- "7165D453146B4EA100DE2F0E",
326
- "7165D451146B4EA100DE2F0E",
327
- "AC5709608A4B604B2A62F693",
328
- "42C6306B0C4EF0451E08B222"
329
- );
330
- "isa" = "PBXGroup";
331
- "sourceTree" = "<group>";
332
- };
333
- "7165D447146B4EA100DE2F0E" = {
334
- "attributes" = {
335
- "LastUpgradeCheck" = "0420";
336
- };
337
- "buildConfigurationList" = "7165D44A146B4EA100DE2F0E";
338
- "compatibilityVersion" = "Xcode 3.2";
339
- "developmentRegion" = "English";
340
- "hasScannedForEncodings" = "0";
341
- "isa" = "PBXProject";
342
- "knownRegions" = (
343
- "en"
344
- );
345
- "mainGroup" = "7165D445146B4EA100DE2F0E";
346
- "productRefGroup" = "7165D451146B4EA100DE2F0E";
347
- "projectDirPath" = "";
348
- "projectRoot" = "";
349
- "targets" = (
350
- "7165D44F146B4EA100DE2F0E",
351
- "7165D46A146B4EA100DE2F0E",
352
- "D111C141DDDD1009668E310E",
353
- "7147F906153E347700763224",
354
- "566BEB5DE68C5E88642EF09E",
355
- "65AB32971E4767F5B3F12FF7",
356
- "58214545BF6DA702353B3F50"
357
- );
358
- };
359
- "7165D44A146B4EA100DE2F0E" = {
360
- "buildConfigurations" = (
361
- "7165D47B146B4EA100DE2F0E",
362
- "7165D47C146B4EA100DE2F0E"
363
- );
364
- "defaultConfigurationIsVisible" = "0";
365
- "defaultConfigurationName" = "Release";
366
- "isa" = "XCConfigurationList";
367
- };
368
- "7165D44C146B4EA100DE2F0E" = {
369
- "buildActionMask" = "2147483647";
370
- "files" = (
371
- "7165D461146B4EA100DE2F0E",
372
- "7165D465146B4EA100DE2F0E",
373
- "896B34DEDCB267B6A64573D2",
374
- "AB9B40F7D71EA8F3672A520C"
375
- );
376
- "isa" = "PBXSourcesBuildPhase";
377
- "runOnlyForDeploymentPostprocessing" = "0";
378
- };
379
- "7165D44D146B4EA100DE2F0E" = {
380
- "buildActionMask" = "2147483647";
381
- "files" = (
382
- "7165D455146B4EA100DE2F0E",
383
- "7165D457146B4EA100DE2F0E",
384
- "7165D459146B4EA100DE2F0E",
385
- "7CFB5CB764A4A1DFF2139CB1"
386
- );
387
- "isa" = "PBXFrameworksBuildPhase";
388
- "runOnlyForDeploymentPostprocessing" = "0";
389
- };
390
- "7165D44E146B4EA100DE2F0E" = {
391
- "buildActionMask" = "2147483647";
392
- "files" = (
393
- "7165D45F146B4EA100DE2F0E"
394
- );
395
- "isa" = "PBXResourcesBuildPhase";
396
- "runOnlyForDeploymentPostprocessing" = "0";
397
- };
398
- "7165D44F146B4EA100DE2F0E" = {
399
- "buildConfigurationList" = "7165D47D146B4EA100DE2F0E";
400
- "buildPhases" = (
401
- "7165D44C146B4EA100DE2F0E",
402
- "7165D44D146B4EA100DE2F0E",
403
- "7165D44E146B4EA100DE2F0E"
404
- );
405
- "buildRules" = (
406
-
407
- );
408
- "dependencies" = (
409
-
410
- );
411
- "isa" = "PBXNativeTarget";
412
- "name" = "TestProject";
413
- "productName" = "TestProject";
414
- "productReference" = "7165D450146B4EA100DE2F0E";
415
- "productType" = "com.apple.product-type.application";
416
- };
417
- "7165D450146B4EA100DE2F0E" = {
418
- "explicitFileType" = "wrapper.application";
419
- "includeInIndex" = "0";
420
- "isa" = "PBXFileReference";
421
- "path" = "TestProject.app";
422
- "sourceTree" = "BUILT_PRODUCTS_DIR";
423
- };
424
- "7165D451146B4EA100DE2F0E" = {
425
- "children" = (
426
- "7165D450146B4EA100DE2F0E",
427
- "7165D46B146B4EA100DE2F0E",
428
- "630E8768C91375E025BDAB9D",
429
- "7147F907153E347700763224",
430
- "717D8FDF4C30423AAB350467"
431
- );
432
- "isa" = "PBXGroup";
433
- "name" = "Products";
434
- "sourceTree" = "<group>";
435
- };
436
- "7165D453146B4EA100DE2F0E" = {
437
- "children" = (
438
- "7165D454146B4EA100DE2F0E",
439
- "7165D456146B4EA100DE2F0E",
440
- "7165D458146B4EA100DE2F0E",
441
- "7165D46C146B4EA100DE2F0E",
442
- "70F2C1C35C0D60D44412B5D5",
443
- "104BB96CB0BED4A4583BC461"
444
- );
445
- "isa" = "PBXGroup";
446
- "name" = "Frameworks";
447
- "sourceTree" = "<group>";
448
- };
449
- "7165D454146B4EA100DE2F0E" = {
450
- "isa" = "PBXFileReference";
451
- "lastKnownFileType" = "wrapper.framework";
452
- "name" = "UIKit.framework";
453
- "path" = "System/Library/Frameworks/UIKit.framework";
454
- "sourceTree" = "SDKROOT";
455
- };
456
- "7165D455146B4EA100DE2F0E" = {
457
- "fileRef" = "7165D454146B4EA100DE2F0E";
458
- "isa" = "PBXBuildFile";
459
- };
460
- "7165D456146B4EA100DE2F0E" = {
461
- "isa" = "PBXFileReference";
462
- "lastKnownFileType" = "wrapper.framework";
463
- "name" = "Foundation.framework";
464
- "path" = "System/Library/Frameworks/Foundation.framework";
465
- "sourceTree" = "SDKROOT";
466
- };
467
- "7165D457146B4EA100DE2F0E" = {
468
- "fileRef" = "7165D456146B4EA100DE2F0E";
469
- "isa" = "PBXBuildFile";
470
- };
471
- "7165D458146B4EA100DE2F0E" = {
472
- "isa" = "PBXFileReference";
473
- "lastKnownFileType" = "wrapper.framework";
474
- "name" = "CoreGraphics.framework";
475
- "path" = "System/Library/Frameworks/CoreGraphics.framework";
476
- "sourceTree" = "SDKROOT";
477
- };
478
- "7165D459146B4EA100DE2F0E" = {
479
- "fileRef" = "7165D458146B4EA100DE2F0E";
480
- "isa" = "PBXBuildFile";
481
- };
482
- "7165D45A146B4EA100DE2F0E" = {
483
- "children" = (
484
- "7165D463146B4EA100DE2F0E",
485
- "7165D464146B4EA100DE2F0E",
486
- "7165D45B146B4EA100DE2F0E"
487
- );
488
- "isa" = "PBXGroup";
489
- "path" = "TestProject";
490
- "sourceTree" = "<group>";
491
- };
492
- "7165D45B146B4EA100DE2F0E" = {
493
- "children" = (
494
- "7165D45C146B4EA100DE2F0E",
495
- "7165D45D146B4EA100DE2F0E",
496
- "7165D460146B4EA100DE2F0E",
497
- "7165D462146B4EA100DE2F0E"
498
- );
499
- "isa" = "PBXGroup";
500
- "name" = "Supporting Files";
501
- "sourceTree" = "<group>";
502
- };
503
- "7165D45C146B4EA100DE2F0E" = {
504
- "isa" = "PBXFileReference";
505
- "lastKnownFileType" = "text.plist.xml";
506
- "path" = "TestProject-Info.plist";
507
- "sourceTree" = "<group>";
508
- };
509
- "7165D45D146B4EA100DE2F0E" = {
510
- "children" = (
511
- "7165D45E146B4EA100DE2F0E"
512
- );
513
- "isa" = "PBXVariantGroup";
514
- "name" = "InfoPlist.strings";
515
- "sourceTree" = "<group>";
516
- };
517
- "7165D45E146B4EA100DE2F0E" = {
518
- "isa" = "PBXFileReference";
519
- "lastKnownFileType" = "text.plist.strings";
520
- "name" = "en";
521
- "path" = "en.lproj/InfoPlist.strings";
522
- "sourceTree" = "<group>";
523
- };
524
- "7165D45F146B4EA100DE2F0E" = {
525
- "fileRef" = "7165D45D146B4EA100DE2F0E";
526
- "isa" = "PBXBuildFile";
527
- };
528
- "7165D460146B4EA100DE2F0E" = {
529
- "isa" = "PBXFileReference";
530
- "lastKnownFileType" = "sourcecode.c.objc";
531
- "path" = "main.m";
532
- "sourceTree" = "<group>";
533
- };
534
- "7165D461146B4EA100DE2F0E" = {
535
- "fileRef" = "7165D460146B4EA100DE2F0E";
536
- "isa" = "PBXBuildFile";
537
- };
538
- "7165D462146B4EA100DE2F0E" = {
539
- "isa" = "PBXFileReference";
540
- "lastKnownFileType" = "sourcecode.c.h";
541
- "path" = "TestProject-Prefix.pch";
542
- "sourceTree" = "<group>";
543
- };
544
- "7165D463146B4EA100DE2F0E" = {
545
- "isa" = "PBXFileReference";
546
- "lastKnownFileType" = "sourcecode.c.h";
547
- "path" = "AppDelegate.h";
548
- "sourceTree" = "<group>";
549
- };
550
- "7165D464146B4EA100DE2F0E" = {
551
- "isa" = "PBXFileReference";
552
- "lastKnownFileType" = "sourcecode.c.objc";
553
- "path" = "AppDelegate.m";
554
- "sourceTree" = "<group>";
555
- };
556
- "7165D465146B4EA100DE2F0E" = {
557
- "fileRef" = "7165D464146B4EA100DE2F0E";
558
- "isa" = "PBXBuildFile";
559
- };
560
- "7165D466146B4EA100DE2F0E" = {
561
- "buildActionMask" = "2147483647";
562
- "files" = (
563
- "7147F920153E34F900763224",
564
- "7147F923153E34F900763224"
565
- );
566
- "isa" = "PBXSourcesBuildPhase";
567
- "runOnlyForDeploymentPostprocessing" = "0";
568
- };
569
- "7165D467146B4EA100DE2F0E" = {
570
- "buildActionMask" = "2147483647";
571
- "files" = (
572
- "7165D46D146B4EA100DE2F0E",
573
- "7165D46E146B4EA100DE2F0E",
574
- "7165D46F146B4EA100DE2F0E"
575
- );
576
- "isa" = "PBXFrameworksBuildPhase";
577
- "runOnlyForDeploymentPostprocessing" = "0";
578
- };
579
- "7165D468146B4EA100DE2F0E" = {
580
- "buildActionMask" = "2147483647";
581
- "files" = (
582
- "7147F921153E34F900763224",
583
- "7147F922153E34F900763224"
584
- );
585
- "isa" = "PBXResourcesBuildPhase";
586
- "runOnlyForDeploymentPostprocessing" = "0";
587
- };
588
- "7165D469146B4EA100DE2F0E" = {
589
- "buildActionMask" = "2147483647";
590
- "files" = (
591
-
592
- );
593
- "inputPaths" = (
594
-
595
- );
596
- "isa" = "PBXShellScriptBuildPhase";
597
- "outputPaths" = (
598
-
599
- );
600
- "runOnlyForDeploymentPostprocessing" = "0";
601
- "shellPath" = "/bin/sh";
602
- "shellScript" = "# Run the unit tests in this test bundle.\n\"${SYSTEM_DEVELOPER_DIR}/Tools/RunUnitTests\"\n";
603
- };
604
- "7165D46A146B4EA100DE2F0E" = {
605
- "buildConfigurationList" = "7165D480146B4EA100DE2F0E";
606
- "buildPhases" = (
607
- "7165D466146B4EA100DE2F0E",
608
- "7165D467146B4EA100DE2F0E",
609
- "7165D468146B4EA100DE2F0E",
610
- "7165D469146B4EA100DE2F0E"
611
- );
612
- "buildRules" = (
613
-
614
- );
615
- "dependencies" = (
616
- "7165D471146B4EA100DE2F0E"
617
- );
618
- "isa" = "PBXNativeTarget";
619
- "name" = "LogicTests";
620
- "productName" = "TestProjectTests";
621
- "productReference" = "7165D46B146B4EA100DE2F0E";
622
- "productType" = "com.apple.product-type.bundle";
623
- };
624
- "7165D46B146B4EA100DE2F0E" = {
625
- "explicitFileType" = "wrapper.cfbundle";
626
- "includeInIndex" = "0";
627
- "isa" = "PBXFileReference";
628
- "path" = "LogicTests.octest";
629
- "sourceTree" = "BUILT_PRODUCTS_DIR";
630
- };
631
- "7165D46C146B4EA100DE2F0E" = {
632
- "isa" = "PBXFileReference";
633
- "lastKnownFileType" = "wrapper.framework";
634
- "name" = "SenTestingKit.framework";
635
- "path" = "Library/Frameworks/SenTestingKit.framework";
636
- "sourceTree" = "DEVELOPER_DIR";
637
- };
638
- "7165D46D146B4EA100DE2F0E" = {
639
- "fileRef" = "7165D46C146B4EA100DE2F0E";
640
- "isa" = "PBXBuildFile";
641
- };
642
- "7165D46E146B4EA100DE2F0E" = {
643
- "fileRef" = "7165D454146B4EA100DE2F0E";
644
- "isa" = "PBXBuildFile";
645
- };
646
- "7165D46F146B4EA100DE2F0E" = {
647
- "fileRef" = "7165D456146B4EA100DE2F0E";
648
- "isa" = "PBXBuildFile";
649
- };
650
- "7165D470146B4EA100DE2F0E" = {
651
- "containerPortal" = "7165D447146B4EA100DE2F0E";
652
- "isa" = "PBXContainerItemProxy";
653
- "proxyType" = "1";
654
- "remoteGlobalIDString" = "7165D44F146B4EA100DE2F0E";
655
- "remoteInfo" = "TestProject";
656
- };
657
- "7165D471146B4EA100DE2F0E" = {
658
- "isa" = "PBXTargetDependency";
659
- "target" = "7165D44F146B4EA100DE2F0E";
660
- "targetProxy" = "7165D470146B4EA100DE2F0E";
661
- };
662
- "7165D47B146B4EA100DE2F0E" = {
663
- "buildSettings" = {
664
- "ALWAYS_SEARCH_USER_PATHS" = "NO";
665
- "ARCHS" = "$(ARCHS_STANDARD_32_BIT)";
666
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
667
- "COPY_PHASE_STRIP" = "NO";
668
- "GCC_C_LANGUAGE_STANDARD" = "gnu99";
669
- "GCC_DYNAMIC_NO_PIC" = "NO";
670
- "GCC_OPTIMIZATION_LEVEL" = "0";
671
- "GCC_PREPROCESSOR_DEFINITIONS" = (
672
- "DEBUG=1",
673
- "$(inherited)"
674
- );
675
- "GCC_SYMBOLS_PRIVATE_EXTERN" = "NO";
676
- "GCC_VERSION" = "com.apple.compilers.llvm.clang.1_0";
677
- "GCC_WARN_ABOUT_MISSING_PROTOTYPES" = "YES";
678
- "GCC_WARN_ABOUT_RETURN_TYPE" = "YES";
679
- "GCC_WARN_UNUSED_VARIABLE" = "YES";
680
- "IPHONEOS_DEPLOYMENT_TARGET" = "5.0";
681
- "SDKROOT" = "iphoneos";
682
- "TARGETED_DEVICE_FAMILY" = "1,2";
683
- };
684
- "isa" = "XCBuildConfiguration";
685
- "name" = "Debug";
686
- };
687
- "7165D47C146B4EA100DE2F0E" = {
688
- "buildSettings" = {
689
- "ALWAYS_SEARCH_USER_PATHS" = "NO";
690
- "ARCHS" = "$(ARCHS_STANDARD_32_BIT)";
691
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
692
- "COPY_PHASE_STRIP" = "YES";
693
- "GCC_C_LANGUAGE_STANDARD" = "gnu99";
694
- "GCC_VERSION" = "com.apple.compilers.llvm.clang.1_0";
695
- "GCC_WARN_ABOUT_MISSING_PROTOTYPES" = "YES";
696
- "GCC_WARN_ABOUT_RETURN_TYPE" = "YES";
697
- "GCC_WARN_UNUSED_VARIABLE" = "YES";
698
- "IPHONEOS_DEPLOYMENT_TARGET" = "5.0";
699
- "OTHER_CFLAGS" = "-DNS_BLOCK_ASSERTIONS=1";
700
- "SDKROOT" = "iphoneos";
701
- "TARGETED_DEVICE_FAMILY" = "1,2";
702
- "VALIDATE_PRODUCT" = "YES";
703
- };
704
- "isa" = "XCBuildConfiguration";
705
- "name" = "Release";
706
- };
707
- "7165D47D146B4EA100DE2F0E" = {
708
- "buildConfigurations" = (
709
- "7165D47E146B4EA100DE2F0E",
710
- "7165D47F146B4EA100DE2F0E"
711
- );
712
- "defaultConfigurationIsVisible" = "0";
713
- "defaultConfigurationName" = "Release";
714
- "isa" = "XCConfigurationList";
715
- };
716
- "7165D47E146B4EA100DE2F0E" = {
717
- "buildSettings" = {
718
- "GCC_PRECOMPILE_PREFIX_HEADER" = "YES";
719
- "GCC_PREFIX_HEADER" = "TestProject/TestProject-Prefix.pch";
720
- "INFOPLIST_FILE" = "TestProject/TestProject-Info.plist";
721
- "PRODUCT_NAME" = "$(TARGET_NAME)";
722
- "WRAPPER_EXTENSION" = "app";
723
- };
724
- "isa" = "XCBuildConfiguration";
725
- "name" = "Debug";
726
- };
727
- "7165D47F146B4EA100DE2F0E" = {
728
- "buildSettings" = {
729
- "GCC_PRECOMPILE_PREFIX_HEADER" = "YES";
730
- "GCC_PREFIX_HEADER" = "TestProject/TestProject-Prefix.pch";
731
- "INFOPLIST_FILE" = "TestProject/TestProject-Info.plist";
732
- "PRODUCT_NAME" = "$(TARGET_NAME)";
733
- "WRAPPER_EXTENSION" = "app";
734
- };
735
- "isa" = "XCBuildConfiguration";
736
- "name" = "Release";
737
- };
738
- "7165D480146B4EA100DE2F0E" = {
739
- "buildConfigurations" = (
740
- "7165D481146B4EA100DE2F0E",
741
- "7165D482146B4EA100DE2F0E"
742
- );
743
- "defaultConfigurationIsVisible" = "0";
744
- "defaultConfigurationName" = "Release";
745
- "isa" = "XCConfigurationList";
746
- };
747
- "7165D481146B4EA100DE2F0E" = {
748
- "buildSettings" = {
749
- "BUNDLE_LOADER" = "$(BUILT_PRODUCTS_DIR)/TestProject.app/TestProject";
750
- "FRAMEWORK_SEARCH_PATHS" = (
751
- "$(SDKROOT)/Developer/Library/Frameworks",
752
- "$(DEVELOPER_LIBRARY_DIR)/Frameworks"
753
- );
754
- "GCC_PRECOMPILE_PREFIX_HEADER" = "YES";
755
- "GCC_PREFIX_HEADER" = "TestProject/TestProject-Prefix.pch";
756
- "INFOPLIST_FILE" = "LogicTests/TestProjectTests-Info.plist";
757
- "PRODUCT_NAME" = "$(TARGET_NAME)";
758
- "TEST_HOST" = "";
759
- "WRAPPER_EXTENSION" = "octest";
760
- };
761
- "isa" = "XCBuildConfiguration";
762
- "name" = "Debug";
763
- };
764
- "7165D482146B4EA100DE2F0E" = {
765
- "buildSettings" = {
766
- "BUNDLE_LOADER" = "$(BUILT_PRODUCTS_DIR)/TestProject.app/TestProject";
767
- "FRAMEWORK_SEARCH_PATHS" = (
768
- "$(SDKROOT)/Developer/Library/Frameworks",
769
- "$(DEVELOPER_LIBRARY_DIR)/Frameworks"
770
- );
771
- "GCC_PRECOMPILE_PREFIX_HEADER" = "YES";
772
- "GCC_PREFIX_HEADER" = "TestProject/TestProject-Prefix.pch";
773
- "INFOPLIST_FILE" = "LogicTests/TestProjectTests-Info.plist";
774
- "PRODUCT_NAME" = "$(TARGET_NAME)";
775
- "TEST_HOST" = "$(BUNDLE_LOADER)";
776
- "WRAPPER_EXTENSION" = "octest";
777
- };
778
- "isa" = "XCBuildConfiguration";
779
- "name" = "Release";
780
- };
781
- "9DD0F856744EE2F634D435BF" = {
782
- "buildSettings" = {
783
- "ALWAYS_SEARCH_USER_PATHS" = "NO";
784
- "ARCHS" = "$(ARCHS_STANDARD_32_BIT)";
785
- "CODE_SIGN_IDENTITY[sdk=>iphoneos*]" = "iPhone Developer";
786
- "COPY_PHASE_STRIP" = "YES";
787
- "FRAMEWORK_SEARCH_PATHS" = (
788
- "$(inherited)",
789
- "\"$(SRCROOT)/Vendor/Frameworks\""
790
- );
791
- "GCC_C_LANGUAGE_STANDARD" = "gnu99";
792
- "GCC_PRECOMPILE_PREFIX_HEADER" = "YES";
793
- "GCC_PREFIX_HEADER" = "Specs/Specs-Prefix.pch";
794
- "GCC_VERSION" = "com.apple.compilers.llvm.clang.1_0";
795
- "GCC_WARN_ABOUT_MISSING_PROTOTYPES" = "YES";
796
- "GCC_WARN_ABOUT_RETURN_TYPE" = "YES";
797
- "INFOPLIST_FILE" = "Specs/Specs-Info.plist";
798
- "IPHONEOS_DEPLOYMENT_TARGET" = "5.0";
799
- "OTHER_CFLAGS" = "-DNS_BLOCK_ASSERTIONS=1";
800
- "OTHER_LDFLAGS" = (
801
- "-ObjC",
802
- "-all_load",
803
- "-lstdc++"
804
- );
805
- "PRODUCT_NAME" = "$(TARGET_NAME)";
806
- "SDKROOT" = "iphoneos";
807
- "TARGETED_DEVICE_FAMILY" = "1,2";
808
- "VALIDATE_PRODUCT" = "YES";
809
- "WRAPPER_EXTENSION" = "app";
810
- };
811
- "isa" = "XCBuildConfiguration";
812
- "name" = "Debug";
813
- };
814
- "C93D39FEB82CC9442CE94908" = {
815
- "buildConfigurations" = (
816
- "9DD0F856744EE2F634D435BF",
817
- "F3367A702467F6782D255B43"
818
- );
819
- "defaultConfigurationIsVisible" = "0";
820
- "defaultConfigurationName" = "";
821
- "isa" = "XCConfigurationList";
822
- };
823
- "D111C141DDDD1009668E310E" = {
824
- "buildConfigurationList" = "C93D39FEB82CC9442CE94908";
825
- "buildPhases" = (
826
- "DDF08A769D3B5B518C166AC6",
827
- "57F7ADA229AE63B1ADB8DA79",
828
- "FEE9A62A759B1FFE1A905731"
829
- );
830
- "buildRules" = (
831
-
832
- );
833
- "dependencies" = (
834
-
835
- );
836
- "isa" = "PBXNativeTarget";
837
- "name" = "Specs";
838
- "productName" = "Specs";
839
- "productType" = "com.apple.product-type.application";
840
- };
841
- "DDF08A769D3B5B518C166AC6" = {
842
- "buildActionMask" = "2147483647";
843
- "files" = (
844
-
845
- );
846
- "isa" = "PBXSourcesBuildPhase";
847
- "runOnlyForDeploymentPostprocessing" = "0";
848
- };
849
- "F3367A702467F6782D255B43" = {
850
- "buildSettings" = {
851
- "ALWAYS_SEARCH_USER_PATHS" = "NO";
852
- "ARCHS" = "$(ARCHS_STANDARD_32_BIT)";
853
- "CODE_SIGN_IDENTITY[sdk=>iphoneos*]" = "iPhone Developer";
854
- "COPY_PHASE_STRIP" = "YES";
855
- "FRAMEWORK_SEARCH_PATHS" = (
856
- "$(inherited)",
857
- "\"$(SRCROOT)/Vendor/Frameworks\""
858
- );
859
- "GCC_C_LANGUAGE_STANDARD" = "gnu99";
860
- "GCC_PRECOMPILE_PREFIX_HEADER" = "YES";
861
- "GCC_PREFIX_HEADER" = "Specs/Specs-Prefix.pch";
862
- "GCC_VERSION" = "com.apple.compilers.llvm.clang.1_0";
863
- "GCC_WARN_ABOUT_MISSING_PROTOTYPES" = "YES";
864
- "GCC_WARN_ABOUT_RETURN_TYPE" = "YES";
865
- "INFOPLIST_FILE" = "Specs/Specs-Info.plist";
866
- "IPHONEOS_DEPLOYMENT_TARGET" = "5.0";
867
- "OTHER_CFLAGS" = "-DNS_BLOCK_ASSERTIONS=1";
868
- "OTHER_LDFLAGS" = (
869
- "-ObjC",
870
- "-all_load",
871
- "-lstdc++"
872
- );
873
- "PRODUCT_NAME" = "$(TARGET_NAME)";
874
- "SDKROOT" = "iphoneos";
875
- "TARGETED_DEVICE_FAMILY" = "1,2";
876
- "VALIDATE_PRODUCT" = "YES";
877
- "WRAPPER_EXTENSION" = "app";
878
- };
879
- "isa" = "XCBuildConfiguration";
880
- "name" = "Release";
881
- };
882
- "FD70EF95A64C6CF15FFAA614" = {
883
- "fileRef" = "7165D456146B4EA100DE2F0E";
884
- "isa" = "PBXBuildFile";
885
- };
886
- "FEE9A62A759B1FFE1A905731" = {
887
- "buildActionMask" = "2147483647";
888
- "files" = (
889
- "2574D65B0D2FFDB5D0372B4A",
890
- "FD70EF95A64C6CF15FFAA614",
891
- "28C60920A77AB174A952864D"
892
- );
893
- "isa" = "PBXFrameworksBuildPhase";
894
- "runOnlyForDeploymentPostprocessing" = "0";
895
- };
896
- "566BEB5DE68C5E88642EF09E" = {
897
- "isa" = "PBXNativeTarget";
898
- "buildConfigurationList" = "4E978B8B93F56FB06E5BFBCA";
899
- "buildPhases" = (
900
- "0EDFE5575605ACDF9AA1B804",
901
- "EDC03EB77E9B48B88E3E054E",
902
- "F01B10057811BCE7522626C5"
903
- );
904
- "buildRules" = (
905
-
906
- );
907
- "dependencies" = (
908
-
909
- );
910
- "name" = "Specs";
911
- "productName" = "Specs";
912
- "productReference" = "";
913
- "productType" = "com.apple.product-type.application";
914
- };
915
- "4E978B8B93F56FB06E5BFBCA" = {
916
- "isa" = "XCConfigurationList";
917
- "buildConfigurations" = (
918
- "5DD56BB92762B289DF3E48B5",
919
- "36D643D000BCE3F365BECA4D"
920
- );
921
- "defaultConfigurationIsVisible" = "0";
922
- "defaultConfigurationName" = "";
923
- };
924
- "717D8FDF4C30423AAB350467" = {
925
- "isa" = "PBXFileReference";
926
- "explicitFileType" = "wrapper.application";
927
- "includeInIndex" = 0;
928
- "path" = "Specs.app";
929
- "sourceTree" = "BUILT_PRODUCTS_DIR";
930
- };
931
- "AC5709608A4B604B2A62F693" = {
932
- "isa" = "PBXGroup";
933
- "name" = "Specs";
934
- "sourceTree" = "<group>";
935
- "children" = (
936
- "6EB49C59EFBEF56B01A23607"
937
- );
938
- };
939
- "6EB49C59EFBEF56B01A23607" = {
940
- "isa" = "PBXGroup";
941
- "name" = "SupportingFiles";
942
- "sourceTree" = "<group>";
943
- "children" = (
944
- "FC4692987FB55060D41DD399",
945
- "1F07613D452161966AC98C1F",
946
- "14178DD0049F392FE2B4AE9C",
947
- "BDAED3EC56B5CE731E41706B"
948
- );
949
- };
950
- "FC4692987FB55060D41DD399" = {
951
- "isa" = "PBXFileReference";
952
- "path" = "Specs/main.m";
953
- "sourceTree" = "<group>";
954
- "name" = "main.m";
955
- };
956
- "0EDFE5575605ACDF9AA1B804" = {
957
- "isa" = "PBXSourcesBuildPhase";
958
- "buildActionMask" = "2147483647";
959
- "files" = (
960
- "C53C4507C4848313D64EE1DA"
961
- );
962
- "runOnlyForDeploymentPostprocessing" = "0";
963
- };
964
- "C53C4507C4848313D64EE1DA" = {
965
- "isa" = "PBXBuildFile";
966
- "fileRef" = "FC4692987FB55060D41DD399";
967
- };
968
- "1F07613D452161966AC98C1F" = {
969
- "isa" = "PBXFileReference";
970
- "path" = "Specs/Specs-Info.plist";
971
- "sourceTree" = "<group>";
972
- "name" = "Specs-Info.plist";
973
- };
974
- "14178DD0049F392FE2B4AE9C" = {
975
- "isa" = "PBXVariantGroup";
976
- "children" = (
977
- "E6753DC550573D143A9FEC12"
978
- );
979
- "name" = "InfoPlist.strings";
980
- "sourceTree" = "<group>";
981
- "path" = "Specs";
982
- };
983
- "E6753DC550573D143A9FEC12" = {
984
- "isa" = "PBXFileReference";
985
- "path" = "en.lproj/InfoPlist.strings";
986
- "sourceTree" = "<group>";
987
- "name" = "en";
988
- };
989
- "EDC03EB77E9B48B88E3E054E" = {
990
- "isa" = "PBXResourcesBuildPhase";
991
- "buildActionMask" = "2147483647";
992
- "files" = (
993
- "9C7D2C9F6D5E18CB216C01D9"
994
- );
995
- "runOnlyForDeploymentPostprocessing" = "0";
996
- };
997
- "9C7D2C9F6D5E18CB216C01D9" = {
998
- "isa" = "PBXBuildFile";
999
- "fileRef" = "14178DD0049F392FE2B4AE9C";
1000
- };
1001
- "BDAED3EC56B5CE731E41706B" = {
1002
- "isa" = "PBXFileReference";
1003
- "path" = "Specs/Specs-Prefix.pch";
1004
- "sourceTree" = "<group>";
1005
- "name" = "Specs-Prefix.pch";
1006
- };
1007
- "104BB96CB0BED4A4583BC461" = {
1008
- "isa" = "PBXFileReference";
1009
- "lastKnownFileType" = "wrapper.framework";
1010
- "name" = "Cedar-iPhone.framework";
1011
- "path" = "Vendor/Frameworks/Cedar-iPhone.framework";
1012
- "sourceTree" = "<group>";
1013
- };
1014
- "F01B10057811BCE7522626C5" = {
1015
- "isa" = "PBXFrameworksBuildPhase";
1016
- "buildActionMask" = "2147483647";
1017
- "files" = (
1018
- "AD008D7235CB4B9B0E13DCD2",
1019
- "2128AEA5484ED301AE0D3F47",
1020
- "7D717CA9D357597EF1FF2774",
1021
- "22AF45D4BE9DDDB3D6166425"
1022
- );
1023
- "runOnlyForDeploymentPostprocessing" = "0";
1024
- };
1025
- "AD008D7235CB4B9B0E13DCD2" = {
1026
- "isa" = "PBXBuildFile";
1027
- "fileRef" = "104BB96CB0BED4A4583BC461";
1028
- };
1029
- "2128AEA5484ED301AE0D3F47" = {
1030
- "isa" = "PBXBuildFile";
1031
- "fileRef" = "7165D454146B4EA100DE2F0E";
1032
- };
1033
- "7D717CA9D357597EF1FF2774" = {
1034
- "isa" = "PBXBuildFile";
1035
- "fileRef" = "7165D456146B4EA100DE2F0E";
1036
- };
1037
- "22AF45D4BE9DDDB3D6166425" = {
1038
- "isa" = "PBXBuildFile";
1039
- "fileRef" = "7165D458146B4EA100DE2F0E";
1040
- };
1041
- "5DD56BB92762B289DF3E48B5" = {
1042
- "isa" = "XCBuildConfiguration";
1043
- "buildSettings" = {
1044
- "SDKROOT" = "iphoneos";
1045
- "OTHER_CFLAGS" = "-DNS_BLOCK_ASSERTIONS=1";
1046
- "TARGETED_DEVICE_FAMILY" = "1,2";
1047
- "GCC_C_LANGUAGE_STANDARD" = "gnu99";
1048
- "ALWAYS_SEARCH_USER_PATHS" = "NO";
1049
- "GCC_VERSION" = "com.apple.compilers.llvm.clang.1_0";
1050
- "ARCHS" = "$(ARCHS_STANDARD_32_BIT)";
1051
- "GCC_WARN_ABOUT_MISSING_PROTOTYPES" = "YES";
1052
- "GCC_WARN_ABOUT_RETURN_TYPE" = "YES";
1053
- "CODE_SIGN_IDENTITY[sdk=>iphoneos*]" = "iPhone Developer";
1054
- "GCC_PRECOMPILE_PREFIX_HEADER" = "YES";
1055
- "VALIDATE_PRODUCT" = "YES";
1056
- "IPHONEOS_DEPLOYMENT_TARGET" = "5.0";
1057
- "COPY_PHASE_STRIP" = "YES";
1058
- "GCC_PREFIX_HEADER" = "Specs/Specs-Prefix.pch";
1059
- "INFOPLIST_FILE" = "Specs/Specs-Info.plist";
1060
- "PRODUCT_NAME" = "$(TARGET_NAME)";
1061
- "WRAPPER_EXTENSION" = "app";
1062
- "OTHER_LDFLAGS" = "-ObjC -all_load -lstdc++";
1063
- "FRAMEWORK_SEARCH_PATHS" = (
1064
- "$(inherited)",
1065
- "\"$(SRCROOT)/Vendor/Frameworks\""
1066
- );
1067
- };
1068
- "name" = "Debug";
1069
- };
1070
- "36D643D000BCE3F365BECA4D" = {
1071
- "isa" = "XCBuildConfiguration";
1072
- "buildSettings" = {
1073
- "SDKROOT" = "iphoneos";
1074
- "OTHER_CFLAGS" = "-DNS_BLOCK_ASSERTIONS=1";
1075
- "TARGETED_DEVICE_FAMILY" = "1,2";
1076
- "GCC_C_LANGUAGE_STANDARD" = "gnu99";
1077
- "ALWAYS_SEARCH_USER_PATHS" = "NO";
1078
- "GCC_VERSION" = "com.apple.compilers.llvm.clang.1_0";
1079
- "ARCHS" = "$(ARCHS_STANDARD_32_BIT)";
1080
- "GCC_WARN_ABOUT_MISSING_PROTOTYPES" = "YES";
1081
- "GCC_WARN_ABOUT_RETURN_TYPE" = "YES";
1082
- "CODE_SIGN_IDENTITY[sdk=>iphoneos*]" = "iPhone Developer";
1083
- "GCC_PRECOMPILE_PREFIX_HEADER" = "YES";
1084
- "VALIDATE_PRODUCT" = "YES";
1085
- "IPHONEOS_DEPLOYMENT_TARGET" = "5.0";
1086
- "COPY_PHASE_STRIP" = "YES";
1087
- "GCC_PREFIX_HEADER" = "Specs/Specs-Prefix.pch";
1088
- "INFOPLIST_FILE" = "Specs/Specs-Info.plist";
1089
- "PRODUCT_NAME" = "$(TARGET_NAME)";
1090
- "WRAPPER_EXTENSION" = "app";
1091
- "OTHER_LDFLAGS" = "-ObjC -all_load -lstdc++";
1092
- "FRAMEWORK_SEARCH_PATHS" = (
1093
- "$(inherited)",
1094
- "\"$(SRCROOT)/Vendor/Frameworks\""
1095
- );
1096
- };
1097
- "name" = "Release";
1098
- };
1099
- "42C6306B0C4EF0451E08B222" = {
1100
- "isa" = "PBXGroup";
1101
- "name" = "Vendor";
1102
- "sourceTree" = "<group>";
1103
- "children" = (
1104
- "D39B9480FD496D3C6D3508E9",
1105
- "B079E3641FF410F6A159725B"
1106
- );
1107
- };
1108
- "D39B9480FD496D3C6D3508E9" = {
1109
- "isa" = "PBXGroup";
1110
- "name" = "EGORefreshTableHeaderView";
1111
- "sourceTree" = "<group>";
1112
- "children" = (
1113
- "944B5CA9AE913BB9435DCF96",
1114
- "F68081D13A02BD73013E2083"
1115
- );
1116
- };
1117
- "944B5CA9AE913BB9435DCF96" = {
1118
- "isa" = "PBXFileReference";
1119
- "path" = "Vendor/EGORefreshTableHeaderView/EGORefreshTableHeaderView.m";
1120
- "sourceTree" = "<group>";
1121
- "name" = "EGORefreshTableHeaderView.m";
1122
- };
1123
- "F68081D13A02BD73013E2083" = {
1124
- "isa" = "PBXFileReference";
1125
- "path" = "Vendor/EGORefreshTableHeaderView/EGORefreshTableHeaderView.h";
1126
- "sourceTree" = "<group>";
1127
- "name" = "EGORefreshTableHeaderView.h";
1128
- };
1129
- "896B34DEDCB267B6A64573D2" = {
1130
- "isa" = "PBXBuildFile";
1131
- "fileRef" = "944B5CA9AE913BB9435DCF96";
1132
- };
1133
- "B079E3641FF410F6A159725B" = {
1134
- "isa" = "PBXGroup";
1135
- "name" = "Reachability";
1136
- "sourceTree" = "<group>";
1137
- "children" = (
1138
- "E85A7A3A78D90CAC47250A92",
1139
- "981B82CFE1543552FDCAED28"
1140
- );
1141
- };
1142
- "E85A7A3A78D90CAC47250A92" = {
1143
- "isa" = "PBXFileReference";
1144
- "path" = "Vendor/Reachability/Reachability.m";
1145
- "sourceTree" = "<group>";
1146
- "name" = "Reachability.m";
1147
- };
1148
- "981B82CFE1543552FDCAED28" = {
1149
- "isa" = "PBXFileReference";
1150
- "path" = "Vendor/Reachability/Reachability.h";
1151
- "sourceTree" = "<group>";
1152
- "name" = "Reachability.h";
1153
- };
1154
- "AB9B40F7D71EA8F3672A520C" = {
1155
- "isa" = "PBXBuildFile";
1156
- "fileRef" = "E85A7A3A78D90CAC47250A92";
1157
- };
1158
- "7CFB5CB764A4A1DFF2139CB1" = {
1159
- "isa" = "PBXBuildFile";
1160
- "fileRef" = "70F2C1C35C0D60D44412B5D5";
1161
- };
1162
- "65AB32971E4767F5B3F12FF7" = {
1163
- "isa" = "PBXNativeTarget";
1164
- "buildConfigurationList" = "321235C2FF8A1C5D8F0BF226";
1165
- "buildPhases" = (
1166
- "535D4B8B1C8252BDF5D0555D",
1167
- "E137863310846ED24931C695"
1168
- );
1169
- "buildRules" = (
1170
-
1171
- );
1172
- "dependencies" = (
1173
-
1174
- );
1175
- "name" = "Library";
1176
- "productName" = "";
1177
- "productReference" = "";
1178
- "productType" = "com.apple.product-type.bundle";
1179
- };
1180
- "321235C2FF8A1C5D8F0BF226" = {
1181
- "isa" = "XCConfigurationList";
1182
- "buildConfigurations" = (
1183
- "904FB8B8EA1BE2A409F5B892"
1184
- );
1185
- "defaultConfigurationIsVisible" = "0";
1186
- "defaultConfigurationName" = "";
1187
- };
1188
- "535D4B8B1C8252BDF5D0555D" = {
1189
- "isa" = "PBXSourcesBuildPhase";
1190
- "buildActionMask" = "2147483647";
1191
- "files" = (
1192
- "80089621450124F06B08F412"
1193
- );
1194
- "runOnlyForDeploymentPostprocessing" = "0";
1195
- };
1196
- "80089621450124F06B08F412" = {
1197
- "isa" = "PBXBuildFile";
1198
- "fileRef" = "7165D464146B4EA100DE2F0E";
1199
- };
1200
- "E137863310846ED24931C695" = {
1201
- "isa" = "PBXHeadersBuildPhase";
1202
- "buildActionMask" = "2147483647";
1203
- "files" = (
1204
- "3953DBAC25E75B57D6DED522",
1205
- "B5B10BA312BA1DC0044F43D3"
1206
- );
1207
- "runOnlyForDeploymentPostprocessing" = "0";
1208
- };
1209
- "3953DBAC25E75B57D6DED522" = {
1210
- "isa" = "PBXBuildFile";
1211
- "fileRef" = "7165D463146B4EA100DE2F0E";
1212
- "settings" = {
1213
- "ATTRIBUTES" = (
1214
- "Public"
1215
- );
1216
- };
1217
- };
1218
- "B5B10BA312BA1DC0044F43D3" = {
1219
- "isa" = "PBXBuildFile";
1220
- "fileRef" = "7165D462146B4EA100DE2F0E";
1221
- };
1222
- "904FB8B8EA1BE2A409F5B892" = {
1223
- "isa" = "XCBuildConfiguration";
1224
- "buildSettings" = {
1225
- "SDKROOT" = "iphoneos";
1226
- "OTHER_CFLAGS" = "-DNS_BLOCK_ASSERTIONS=1";
1227
- "TARGETED_DEVICE_FAMILY" = "1,2";
1228
- "GCC_C_LANGUAGE_STANDARD" = "gnu99";
1229
- "ALWAYS_SEARCH_USER_PATHS" = "NO";
1230
- "GCC_VERSION" = "com.apple.compilers.llvm.clang.1_0";
1231
- "ARCHS" = "$(ARCHS_STANDARD_32_BIT) armv6";
1232
- "GCC_WARN_ABOUT_MISSING_PROTOTYPES" = "YES";
1233
- "GCC_WARN_ABOUT_RETURN_TYPE" = "YES";
1234
- "CODE_SIGN_IDENTITY[sdk=>iphoneos*]" = "iPhone Developer";
1235
- "GCC_PRECOMPILE_PREFIX_HEADER" = "NO";
1236
- "VALIDATE_PRODUCT" = "YES";
1237
- "IPHONEOS_DEPLOYMENT_TARGET" = "5.0";
1238
- "COPY_PHASE_STRIP" = "YES";
1239
- "GCC_PREFIX_HEADER" = "";
1240
- "INFOPLIST_FILE" = "";
1241
- "PRODUCT_NAME" = "$(TARGET_NAME)";
1242
- "WRAPPER_EXTENSION" = "framework";
1243
- "DEAD_CODE_STRIPPING" = "NO";
1244
- "DEBUG_INFORMATION_FORMAT" = "dwarf-with-dsym";
1245
- "GCC_ENABLE_OBJC_EXCEPTIONS" = "YES";
1246
- "GCC_GENERATE_DEBUGGING_SYMBOLS" = "NO";
1247
- "GCC_WARN_64_TO_32_BIT_CONVERSION" = "YES";
1248
- "INSTALL_PATH" = "$(LOCAL_LIBRARY_DIR)/Bundles";
1249
- "LINK_WITH_STANDARD_LIBRARIES" = "NO";
1250
- "MACH_O_TYPE" = "mh_object";
1251
- "MACOSX_DEPLOYMENT_TARGET" = "10.7";
1252
- "VALID_ARCHS" = "$(ARCHS_STANDARD_32_BIT)";
1253
- };
1254
- "name" = "Release";
1255
- };
1256
- "58214545BF6DA702353B3F50" = {
1257
- "isa" = "PBXAggregateTarget";
1258
- "buildConfigurationList" = "31C3DED5AEA103F02B771419";
1259
- "buildPhases" = (
1260
- "5F4CA7851E60DB3BE876D033"
1261
- );
1262
- "dependencies" = (
1263
-
1264
- );
1265
- "name" = "Universal Library";
1266
- "productName" = "Univeral Library";
1267
- };
1268
- "31C3DED5AEA103F02B771419" = {
1269
- "isa" = "XCConfigurationList";
1270
- "buildConfigurations" = (
1271
- "C4A2F7E596653FE7E40DEEA4"
1272
- );
1273
- "defaultConfigurationIsVisible" = "0";
1274
- "defaultConfigurationName" = "";
1275
- };
1276
- "3AF50A60F27F1ED34A2F6E1F" = {
1277
- "isa" = "PBXTargetDependency";
1278
- "target" = "65AB32971E4767F5B3F12FF7";
1279
- "targetProxy" = "E22011CEAD881762DA139A01";
1280
- };
1281
- "E22011CEAD881762DA139A01" = {
1282
- "isa" = "PBXContainerItemProxy";
1283
- "containerPortal" = "7165D447146B4EA100DE2F0E";
1284
- "proxyType" = 1;
1285
- "remoteGlobalIDString" = "65AB32971E4767F5B3F12FF7";
1286
- "remoteInfo" = "Library";
1287
- };
1288
- "C4A2F7E596653FE7E40DEEA4" = {
1289
- "isa" = "XCBuildConfiguration";
1290
- "buildSettings" = {
1291
- "SDKROOT" = "iphoneos";
1292
- "OTHER_CFLAGS" = "-DNS_BLOCK_ASSERTIONS=1";
1293
- "TARGETED_DEVICE_FAMILY" = "1,2";
1294
- "GCC_C_LANGUAGE_STANDARD" = "gnu99";
1295
- "ALWAYS_SEARCH_USER_PATHS" = "NO";
1296
- "GCC_VERSION" = "com.apple.compilers.llvm.clang.1_0";
1297
- "ARCHS" = "$(ARCHS_STANDARD_32_BIT)";
1298
- "GCC_WARN_ABOUT_MISSING_PROTOTYPES" = "YES";
1299
- "GCC_WARN_ABOUT_RETURN_TYPE" = "YES";
1300
- "CODE_SIGN_IDENTITY[sdk=>iphoneos*]" = "iPhone Developer";
1301
- "GCC_PRECOMPILE_PREFIX_HEADER" = "YES";
1302
- "VALIDATE_PRODUCT" = "YES";
1303
- "IPHONEOS_DEPLOYMENT_TARGET" = "5.0";
1304
- "COPY_PHASE_STRIP" = "YES";
1305
- "GCC_PREFIX_HEADER" = "Release/Release-Prefix.pch";
1306
- "INFOPLIST_FILE" = "Release/Release-Info.plist";
1307
- "PRODUCT_NAME" = "$(TARGET_NAME)";
1308
- "WRAPPER_EXTENSION" = "app";
1309
- };
1310
- "name" = "Release";
1311
- };
1312
- "5F4CA7851E60DB3BE876D033" = {
1313
- "isa" = "PBXShellScriptBuildPhase";
1314
- "buildActionMask" = "2147483647";
1315
- "files" = (
1316
-
1317
- );
1318
- "inputPaths" = (
1319
-
1320
- );
1321
- "outputPaths" = (
1322
-
1323
- );
1324
- "shellPath" = "/bin/sh";
1325
- "shellScript" = "# Sets the target folders and the final framework product.\nFMK_NAME=Library\nFMK_VERSION=A\n\n# Install dir will be the final output to the framework.\n# The following line create it in the root folder of the current project.\nINSTALL_DIR=${SRCROOT}/Products/${FMK_NAME}.framework\n\n# Working dir will be deleted after the framework creation.\nWRK_DIR=build\nDEVICE_DIR=${WRK_DIR}/Release-iphoneos/${FMK_NAME}.framework\nSIMULATOR_DIR=${WRK_DIR}/Release-iphonesimulator/${FMK_NAME}.framework\n\n# Building both architectures.\nxcodebuild -configuration \"Release\" -target \"${FMK_NAME}\" -sdk iphoneos\nxcodebuild -configuration \"Release\" -target \"${FMK_NAME}\" -sdk iphonesimulator\n\n# Cleaning the oldest.\nif [ -d \"${INSTALL_DIR}\" ]\nthen\nrm -rf \"${INSTALL_DIR}\"\nfi\n\n# Creates and renews the final product folder.\nmkdir -p \"${INSTALL_DIR}\"\nmkdir -p \"${INSTALL_DIR}/Versions\"\nmkdir -p \"${INSTALL_DIR}/Versions/${FMK_VERSION}\"\nmkdir -p \"${INSTALL_DIR}/Versions/${FMK_VERSION}/Resources\"\nmkdir -p \"${INSTALL_DIR}/Versions/${FMK_VERSION}/Headers\"\n\n# Creates the internal links.\n# It MUST uses relative path, otherwise will not work when the folder is copied/moved.\nln -s \"${FMK_VERSION}\" \"${INSTALL_DIR}/Versions/Current\"\nln -s \"Versions/Current/Headers\" \"${INSTALL_DIR}/Headers\"\nln -s \"Versions/Current/Resources\" \"${INSTALL_DIR}/Resources\"\nln -s \"Versions/Current/${FMK_NAME}\" \"${INSTALL_DIR}/${FMK_NAME}\"\n\n# Copies the headers and resources files to the final product folder.\ncp -R \"${DEVICE_DIR}/Headers/\" \"${INSTALL_DIR}/Versions/${FMK_VERSION}/Headers/\"\ncp -R \"${DEVICE_DIR}/\" \"${INSTALL_DIR}/Versions/${FMK_VERSION}/Resources/\"\n\n# Removes the binary and header from the resources folder.\nrm -r \"${INSTALL_DIR}/Versions/${FMK_VERSION}/Resources/Headers\" \"${INSTALL_DIR}/Versions/${FMK_VERSION}/Resources/${FMK_NAME}\"\n\n# Uses the Lipo Tool to merge both binary files (i386 + armv6/armv7) into one Universal final product.\nlipo -create \"${DEVICE_DIR}/${FMK_NAME}\" \"${SIMULATOR_DIR}/${FMK_NAME}\" -output \"${INSTALL_DIR}/Versions/${FMK_VERSION}/${FMK_NAME}\"\n\nrm -r \"${WRK_DIR}\"";
1326
- "runOnlyForDeploymentPostprocessing" = "0";
1327
- };
1328
- };
1329
- "rootObject" = "7165D447146B4EA100DE2F0E";
1330
- }
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 46;
7
+ objects = {
8
+
9
+ /* Begin PBXAggregateTarget section */
10
+ 58214545BF6DA702353B3F50 /* Universal Library */ = {
11
+ isa = PBXAggregateTarget;
12
+ buildConfigurationList = 31C3DED5AEA103F02B771419 /* Build configuration list for PBXAggregateTarget "Universal Library" */;
13
+ buildPhases = (
14
+ 5F4CA7851E60DB3BE876D033 /* ShellScript */,
15
+ );
16
+ dependencies = (
17
+ );
18
+ name = "Universal Library";
19
+ productName = "Univeral Library";
20
+ };
21
+ /* End PBXAggregateTarget section */
22
+
23
+ /* Begin PBXBuildFile section */
24
+ 2128AEA5484ED301AE0D3F47 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7165D454146B4EA100DE2F0E /* UIKit.framework */; };
25
+ 22AF45D4BE9DDDB3D6166425 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7165D458146B4EA100DE2F0E /* CoreGraphics.framework */; };
26
+ 2574D65B0D2FFDB5D0372B4A /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7165D454146B4EA100DE2F0E /* UIKit.framework */; };
27
+ 28C60920A77AB174A952864D /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7165D458146B4EA100DE2F0E /* CoreGraphics.framework */; };
28
+ 3953DBAC25E75B57D6DED522 /* AppDelegate.h in Headers */ = {isa = PBXBuildFile; fileRef = 7165D463146B4EA100DE2F0E /* AppDelegate.h */; settings = {ATTRIBUTES = (Public, ); }; };
29
+ 7147F908153E347700763224 /* SenTestingKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7165D46C146B4EA100DE2F0E /* SenTestingKit.framework */; };
30
+ 7147F909153E347700763224 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7165D454146B4EA100DE2F0E /* UIKit.framework */; };
31
+ 7147F90A153E347700763224 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7165D456146B4EA100DE2F0E /* Foundation.framework */; };
32
+ 7147F910153E347700763224 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 7147F90E153E347700763224 /* InfoPlist.strings */; };
33
+ 7147F913153E347700763224 /* ApplicationTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 7147F912153E347700763224 /* ApplicationTests.m */; };
34
+ 7147F920153E34F900763224 /* AnotherTest.m in Sources */ = {isa = PBXBuildFile; fileRef = 7147F91A153E34F900763224 /* AnotherTest.m */; };
35
+ 7147F921153E34F900763224 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 7147F91B153E34F900763224 /* InfoPlist.strings */; };
36
+ 7147F922153E34F900763224 /* TestProjectTests-Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 7147F91D153E34F900763224 /* TestProjectTests-Info.plist */; };
37
+ 7147F923153E34F900763224 /* TestProjectTests.m in Sources */ = {isa = PBXBuildFile; fileRef = 7147F91F153E34F900763224 /* TestProjectTests.m */; };
38
+ 7165D455146B4EA100DE2F0E /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7165D454146B4EA100DE2F0E /* UIKit.framework */; };
39
+ 7165D457146B4EA100DE2F0E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7165D456146B4EA100DE2F0E /* Foundation.framework */; };
40
+ 7165D459146B4EA100DE2F0E /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7165D458146B4EA100DE2F0E /* CoreGraphics.framework */; };
41
+ 7165D45F146B4EA100DE2F0E /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 7165D45D146B4EA100DE2F0E /* InfoPlist.strings */; };
42
+ 7165D461146B4EA100DE2F0E /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 7165D460146B4EA100DE2F0E /* main.m */; };
43
+ 7165D465146B4EA100DE2F0E /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 7165D464146B4EA100DE2F0E /* AppDelegate.m */; };
44
+ 7165D46D146B4EA100DE2F0E /* SenTestingKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7165D46C146B4EA100DE2F0E /* SenTestingKit.framework */; };
45
+ 7165D46E146B4EA100DE2F0E /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7165D454146B4EA100DE2F0E /* UIKit.framework */; };
46
+ 7165D46F146B4EA100DE2F0E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7165D456146B4EA100DE2F0E /* Foundation.framework */; };
47
+ 7D717CA9D357597EF1FF2774 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7165D456146B4EA100DE2F0E /* Foundation.framework */; };
48
+ 80089621450124F06B08F412 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 7165D464146B4EA100DE2F0E /* AppDelegate.m */; };
49
+ 9C7D2C9F6D5E18CB216C01D9 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 14178DD0049F392FE2B4AE9C /* InfoPlist.strings */; };
50
+ AD008D7235CB4B9B0E13DCD2 /* Cedar-iPhone.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 104BB96CB0BED4A4583BC461 /* Cedar-iPhone.framework */; };
51
+ B5B10BA312BA1DC0044F43D3 /* TestProject-Prefix.pch in Headers */ = {isa = PBXBuildFile; fileRef = 7165D462146B4EA100DE2F0E /* TestProject-Prefix.pch */; };
52
+ C53C4507C4848313D64EE1DA /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = FC4692987FB55060D41DD399 /* main.m */; };
53
+ FD70EF95A64C6CF15FFAA614 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7165D456146B4EA100DE2F0E /* Foundation.framework */; };
54
+ /* End PBXBuildFile section */
55
+
56
+ /* Begin PBXContainerItemProxy section */
57
+ 7165D470146B4EA100DE2F0E /* PBXContainerItemProxy */ = {
58
+ isa = PBXContainerItemProxy;
59
+ containerPortal = 7165D447146B4EA100DE2F0E /* Project object */;
60
+ proxyType = 1;
61
+ remoteGlobalIDString = 7165D44F146B4EA100DE2F0E;
62
+ remoteInfo = TestProject;
63
+ };
64
+ /* End PBXContainerItemProxy section */
65
+
66
+ /* Begin PBXFileReference section */
67
+ 104BB96CB0BED4A4583BC461 /* Cedar-iPhone.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Cedar-iPhone.framework"; path = "Vendor/Frameworks/Cedar-iPhone.framework"; sourceTree = "<group>"; };
68
+ 1F07613D452161966AC98C1F /* Specs-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; name = "Specs-Info.plist"; path = "Specs/Specs-Info.plist"; sourceTree = "<group>"; };
69
+ 630E8768C91375E025BDAB9D /* Specs.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Specs.app; sourceTree = BUILT_PRODUCTS_DIR; };
70
+ 7147F907153E347700763224 /* ApplicationTests.octest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = ApplicationTests.octest; sourceTree = BUILT_PRODUCTS_DIR; };
71
+ 7147F90D153E347700763224 /* ApplicationTests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "ApplicationTests-Info.plist"; sourceTree = "<group>"; };
72
+ 7147F90F153E347700763224 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
73
+ 7147F911153E347700763224 /* ApplicationTests.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = ApplicationTests.h; sourceTree = "<group>"; };
74
+ 7147F912153E347700763224 /* ApplicationTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = ApplicationTests.m; sourceTree = "<group>"; };
75
+ 7147F914153E347700763224 /* ApplicationTests-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "ApplicationTests-Prefix.pch"; sourceTree = "<group>"; };
76
+ 7147F919153E34F900763224 /* AnotherTest.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = AnotherTest.h; sourceTree = "<group>"; };
77
+ 7147F91A153E34F900763224 /* AnotherTest.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = AnotherTest.m; sourceTree = "<group>"; };
78
+ 7147F91C153E34F900763224 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
79
+ 7147F91D153E34F900763224 /* TestProjectTests-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "TestProjectTests-Info.plist"; sourceTree = "<group>"; };
80
+ 7147F91E153E34F900763224 /* TestProjectTests.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = TestProjectTests.h; sourceTree = "<group>"; };
81
+ 7147F91F153E34F900763224 /* TestProjectTests.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = TestProjectTests.m; sourceTree = "<group>"; };
82
+ 7165D450146B4EA100DE2F0E /* TestProject.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = TestProject.app; sourceTree = BUILT_PRODUCTS_DIR; };
83
+ 7165D454146B4EA100DE2F0E /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
84
+ 7165D456146B4EA100DE2F0E /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
85
+ 7165D458146B4EA100DE2F0E /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
86
+ 7165D45C146B4EA100DE2F0E /* TestProject-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "TestProject-Info.plist"; sourceTree = "<group>"; };
87
+ 7165D45E146B4EA100DE2F0E /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
88
+ 7165D460146B4EA100DE2F0E /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
89
+ 7165D462146B4EA100DE2F0E /* TestProject-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "TestProject-Prefix.pch"; sourceTree = "<group>"; };
90
+ 7165D463146B4EA100DE2F0E /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
91
+ 7165D464146B4EA100DE2F0E /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
92
+ 7165D46B146B4EA100DE2F0E /* LogicTests.octest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = LogicTests.octest; sourceTree = BUILT_PRODUCTS_DIR; };
93
+ 7165D46C146B4EA100DE2F0E /* SenTestingKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = SenTestingKit.framework; path = Library/Frameworks/SenTestingKit.framework; sourceTree = DEVELOPER_DIR; };
94
+ 717D8FDF4C30423AAB350467 /* Specs.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Specs.app; sourceTree = BUILT_PRODUCTS_DIR; };
95
+ BDAED3EC56B5CE731E41706B /* Specs-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "Specs-Prefix.pch"; path = "Specs/Specs-Prefix.pch"; sourceTree = "<group>"; };
96
+ E6753DC550573D143A9FEC12 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
97
+ FC4692987FB55060D41DD399 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = main.m; path = Specs/main.m; sourceTree = "<group>"; };
98
+ /* End PBXFileReference section */
99
+
100
+ /* Begin PBXFrameworksBuildPhase section */
101
+ 7147F903153E347700763224 /* Frameworks */ = {
102
+ isa = PBXFrameworksBuildPhase;
103
+ buildActionMask = 2147483647;
104
+ files = (
105
+ 7147F908153E347700763224 /* SenTestingKit.framework in Frameworks */,
106
+ 7147F909153E347700763224 /* UIKit.framework in Frameworks */,
107
+ 7147F90A153E347700763224 /* Foundation.framework in Frameworks */,
108
+ );
109
+ runOnlyForDeploymentPostprocessing = 0;
110
+ };
111
+ 7165D44D146B4EA100DE2F0E /* Frameworks */ = {
112
+ isa = PBXFrameworksBuildPhase;
113
+ buildActionMask = 2147483647;
114
+ files = (
115
+ 7165D455146B4EA100DE2F0E /* UIKit.framework in Frameworks */,
116
+ 7165D457146B4EA100DE2F0E /* Foundation.framework in Frameworks */,
117
+ 7165D459146B4EA100DE2F0E /* CoreGraphics.framework in Frameworks */,
118
+ );
119
+ runOnlyForDeploymentPostprocessing = 0;
120
+ };
121
+ 7165D467146B4EA100DE2F0E /* Frameworks */ = {
122
+ isa = PBXFrameworksBuildPhase;
123
+ buildActionMask = 2147483647;
124
+ files = (
125
+ 7165D46D146B4EA100DE2F0E /* SenTestingKit.framework in Frameworks */,
126
+ 7165D46E146B4EA100DE2F0E /* UIKit.framework in Frameworks */,
127
+ 7165D46F146B4EA100DE2F0E /* Foundation.framework in Frameworks */,
128
+ );
129
+ runOnlyForDeploymentPostprocessing = 0;
130
+ };
131
+ F01B10057811BCE7522626C5 /* Frameworks */ = {
132
+ isa = PBXFrameworksBuildPhase;
133
+ buildActionMask = 2147483647;
134
+ files = (
135
+ AD008D7235CB4B9B0E13DCD2 /* Cedar-iPhone.framework in Frameworks */,
136
+ 2128AEA5484ED301AE0D3F47 /* UIKit.framework in Frameworks */,
137
+ 7D717CA9D357597EF1FF2774 /* Foundation.framework in Frameworks */,
138
+ 22AF45D4BE9DDDB3D6166425 /* CoreGraphics.framework in Frameworks */,
139
+ );
140
+ runOnlyForDeploymentPostprocessing = 0;
141
+ };
142
+ FEE9A62A759B1FFE1A905731 /* Frameworks */ = {
143
+ isa = PBXFrameworksBuildPhase;
144
+ buildActionMask = 2147483647;
145
+ files = (
146
+ 2574D65B0D2FFDB5D0372B4A /* UIKit.framework in Frameworks */,
147
+ FD70EF95A64C6CF15FFAA614 /* Foundation.framework in Frameworks */,
148
+ 28C60920A77AB174A952864D /* CoreGraphics.framework in Frameworks */,
149
+ );
150
+ runOnlyForDeploymentPostprocessing = 0;
151
+ };
152
+ /* End PBXFrameworksBuildPhase section */
153
+
154
+ /* Begin PBXGroup section */
155
+ 42C6306B0C4EF0451E08B222 /* Vendor */ = {
156
+ isa = PBXGroup;
157
+ children = (
158
+ );
159
+ name = Vendor;
160
+ sourceTree = "<group>";
161
+ };
162
+ 6EB49C59EFBEF56B01A23607 /* SupportingFiles */ = {
163
+ isa = PBXGroup;
164
+ children = (
165
+ FC4692987FB55060D41DD399 /* main.m */,
166
+ 1F07613D452161966AC98C1F /* Specs-Info.plist */,
167
+ 14178DD0049F392FE2B4AE9C /* InfoPlist.strings */,
168
+ BDAED3EC56B5CE731E41706B /* Specs-Prefix.pch */,
169
+ );
170
+ name = SupportingFiles;
171
+ sourceTree = "<group>";
172
+ };
173
+ 7147F90B153E347700763224 /* ApplicationTests */ = {
174
+ isa = PBXGroup;
175
+ children = (
176
+ 7147F911153E347700763224 /* ApplicationTests.h */,
177
+ 7147F912153E347700763224 /* ApplicationTests.m */,
178
+ 7147F90C153E347700763224 /* Supporting Files */,
179
+ );
180
+ path = ApplicationTests;
181
+ sourceTree = "<group>";
182
+ };
183
+ 7147F90C153E347700763224 /* Supporting Files */ = {
184
+ isa = PBXGroup;
185
+ children = (
186
+ 7147F90D153E347700763224 /* ApplicationTests-Info.plist */,
187
+ 7147F90E153E347700763224 /* InfoPlist.strings */,
188
+ 7147F914153E347700763224 /* ApplicationTests-Prefix.pch */,
189
+ );
190
+ name = "Supporting Files";
191
+ sourceTree = "<group>";
192
+ };
193
+ 7147F918153E34F900763224 /* LogicTests */ = {
194
+ isa = PBXGroup;
195
+ children = (
196
+ 7147F924153E350400763224 /* Supporting Files */,
197
+ 7147F919153E34F900763224 /* AnotherTest.h */,
198
+ 7147F91A153E34F900763224 /* AnotherTest.m */,
199
+ 7147F91E153E34F900763224 /* TestProjectTests.h */,
200
+ 7147F91F153E34F900763224 /* TestProjectTests.m */,
201
+ );
202
+ path = LogicTests;
203
+ sourceTree = "<group>";
204
+ };
205
+ 7147F924153E350400763224 /* Supporting Files */ = {
206
+ isa = PBXGroup;
207
+ children = (
208
+ 7147F91B153E34F900763224 /* InfoPlist.strings */,
209
+ 7147F91D153E34F900763224 /* TestProjectTests-Info.plist */,
210
+ );
211
+ name = "Supporting Files";
212
+ sourceTree = "<group>";
213
+ };
214
+ 7165D445146B4EA100DE2F0E = {
215
+ isa = PBXGroup;
216
+ children = (
217
+ 7165D45A146B4EA100DE2F0E /* TestProject */,
218
+ 7147F918153E34F900763224 /* LogicTests */,
219
+ 7147F90B153E347700763224 /* ApplicationTests */,
220
+ 7165D453146B4EA100DE2F0E /* Frameworks */,
221
+ 7165D451146B4EA100DE2F0E /* Products */,
222
+ AC5709608A4B604B2A62F693 /* Specs */,
223
+ 42C6306B0C4EF0451E08B222 /* Vendor */,
224
+ );
225
+ sourceTree = "<group>";
226
+ };
227
+ 7165D451146B4EA100DE2F0E /* Products */ = {
228
+ isa = PBXGroup;
229
+ children = (
230
+ 7165D450146B4EA100DE2F0E /* TestProject.app */,
231
+ 7165D46B146B4EA100DE2F0E /* LogicTests.octest */,
232
+ 630E8768C91375E025BDAB9D /* Specs.app */,
233
+ 7147F907153E347700763224 /* ApplicationTests.octest */,
234
+ 717D8FDF4C30423AAB350467 /* Specs.app */,
235
+ );
236
+ name = Products;
237
+ sourceTree = "<group>";
238
+ };
239
+ 7165D453146B4EA100DE2F0E /* Frameworks */ = {
240
+ isa = PBXGroup;
241
+ children = (
242
+ 7165D454146B4EA100DE2F0E /* UIKit.framework */,
243
+ 7165D456146B4EA100DE2F0E /* Foundation.framework */,
244
+ 7165D458146B4EA100DE2F0E /* CoreGraphics.framework */,
245
+ 7165D46C146B4EA100DE2F0E /* SenTestingKit.framework */,
246
+ 104BB96CB0BED4A4583BC461 /* Cedar-iPhone.framework */,
247
+ );
248
+ name = Frameworks;
249
+ sourceTree = "<group>";
250
+ };
251
+ 7165D45A146B4EA100DE2F0E /* TestProject */ = {
252
+ isa = PBXGroup;
253
+ children = (
254
+ 7165D463146B4EA100DE2F0E /* AppDelegate.h */,
255
+ 7165D464146B4EA100DE2F0E /* AppDelegate.m */,
256
+ 7165D45B146B4EA100DE2F0E /* Supporting Files */,
257
+ );
258
+ path = TestProject;
259
+ sourceTree = "<group>";
260
+ };
261
+ 7165D45B146B4EA100DE2F0E /* Supporting Files */ = {
262
+ isa = PBXGroup;
263
+ children = (
264
+ 7165D45C146B4EA100DE2F0E /* TestProject-Info.plist */,
265
+ 7165D45D146B4EA100DE2F0E /* InfoPlist.strings */,
266
+ 7165D460146B4EA100DE2F0E /* main.m */,
267
+ 7165D462146B4EA100DE2F0E /* TestProject-Prefix.pch */,
268
+ );
269
+ name = "Supporting Files";
270
+ sourceTree = "<group>";
271
+ };
272
+ AC5709608A4B604B2A62F693 /* Specs */ = {
273
+ isa = PBXGroup;
274
+ children = (
275
+ 6EB49C59EFBEF56B01A23607 /* SupportingFiles */,
276
+ );
277
+ name = Specs;
278
+ sourceTree = "<group>";
279
+ };
280
+ /* End PBXGroup section */
281
+
282
+ /* Begin PBXHeadersBuildPhase section */
283
+ E137863310846ED24931C695 /* Headers */ = {
284
+ isa = PBXHeadersBuildPhase;
285
+ buildActionMask = 2147483647;
286
+ files = (
287
+ 3953DBAC25E75B57D6DED522 /* AppDelegate.h in Headers */,
288
+ B5B10BA312BA1DC0044F43D3 /* TestProject-Prefix.pch in Headers */,
289
+ );
290
+ runOnlyForDeploymentPostprocessing = 0;
291
+ };
292
+ /* End PBXHeadersBuildPhase section */
293
+
294
+ /* Begin PBXNativeTarget section */
295
+ 566BEB5DE68C5E88642EF09E /* Specs */ = {
296
+ isa = PBXNativeTarget;
297
+ buildConfigurationList = 4E978B8B93F56FB06E5BFBCA /* Build configuration list for PBXNativeTarget "Specs" */;
298
+ buildPhases = (
299
+ 0EDFE5575605ACDF9AA1B804 /* Sources */,
300
+ EDC03EB77E9B48B88E3E054E /* Resources */,
301
+ F01B10057811BCE7522626C5 /* Frameworks */,
302
+ );
303
+ buildRules = (
304
+ );
305
+ dependencies = (
306
+ );
307
+ name = Specs;
308
+ productName = Specs;
309
+ productType = "com.apple.product-type.application";
310
+ };
311
+ 65AB32971E4767F5B3F12FF7 /* Library */ = {
312
+ isa = PBXNativeTarget;
313
+ buildConfigurationList = 321235C2FF8A1C5D8F0BF226 /* Build configuration list for PBXNativeTarget "Library" */;
314
+ buildPhases = (
315
+ 535D4B8B1C8252BDF5D0555D /* Sources */,
316
+ E137863310846ED24931C695 /* Headers */,
317
+ );
318
+ buildRules = (
319
+ );
320
+ dependencies = (
321
+ );
322
+ name = Library;
323
+ productName = "";
324
+ productType = "com.apple.product-type.bundle";
325
+ };
326
+ 7147F906153E347700763224 /* ApplicationTests */ = {
327
+ isa = PBXNativeTarget;
328
+ buildConfigurationList = 7147F915153E347700763224 /* Build configuration list for PBXNativeTarget "ApplicationTests" */;
329
+ buildPhases = (
330
+ 7147F902153E347700763224 /* Sources */,
331
+ 7147F903153E347700763224 /* Frameworks */,
332
+ 7147F904153E347700763224 /* Resources */,
333
+ 7147F905153E347700763224 /* ShellScript */,
334
+ );
335
+ buildRules = (
336
+ );
337
+ dependencies = (
338
+ );
339
+ name = ApplicationTests;
340
+ productName = ApplicationTests;
341
+ productReference = 7147F907153E347700763224 /* ApplicationTests.octest */;
342
+ productType = "com.apple.product-type.bundle";
343
+ };
344
+ 7165D44F146B4EA100DE2F0E /* TestProject */ = {
345
+ isa = PBXNativeTarget;
346
+ buildConfigurationList = 7165D47D146B4EA100DE2F0E /* Build configuration list for PBXNativeTarget "TestProject" */;
347
+ buildPhases = (
348
+ 7165D44C146B4EA100DE2F0E /* Sources */,
349
+ 7165D44D146B4EA100DE2F0E /* Frameworks */,
350
+ 7165D44E146B4EA100DE2F0E /* Resources */,
351
+ );
352
+ buildRules = (
353
+ );
354
+ dependencies = (
355
+ );
356
+ name = TestProject;
357
+ productName = TestProject;
358
+ productReference = 7165D450146B4EA100DE2F0E /* TestProject.app */;
359
+ productType = "com.apple.product-type.application";
360
+ };
361
+ 7165D46A146B4EA100DE2F0E /* LogicTests */ = {
362
+ isa = PBXNativeTarget;
363
+ buildConfigurationList = 7165D480146B4EA100DE2F0E /* Build configuration list for PBXNativeTarget "LogicTests" */;
364
+ buildPhases = (
365
+ 7165D466146B4EA100DE2F0E /* Sources */,
366
+ 7165D467146B4EA100DE2F0E /* Frameworks */,
367
+ 7165D468146B4EA100DE2F0E /* Resources */,
368
+ 7165D469146B4EA100DE2F0E /* ShellScript */,
369
+ );
370
+ buildRules = (
371
+ );
372
+ dependencies = (
373
+ 7165D471146B4EA100DE2F0E /* PBXTargetDependency */,
374
+ );
375
+ name = LogicTests;
376
+ productName = TestProjectTests;
377
+ productReference = 7165D46B146B4EA100DE2F0E /* LogicTests.octest */;
378
+ productType = "com.apple.product-type.bundle";
379
+ };
380
+ D111C141DDDD1009668E310E /* Specs */ = {
381
+ isa = PBXNativeTarget;
382
+ buildConfigurationList = C93D39FEB82CC9442CE94908 /* Build configuration list for PBXNativeTarget "Specs" */;
383
+ buildPhases = (
384
+ DDF08A769D3B5B518C166AC6 /* Sources */,
385
+ 57F7ADA229AE63B1ADB8DA79 /* Resources */,
386
+ FEE9A62A759B1FFE1A905731 /* Frameworks */,
387
+ );
388
+ buildRules = (
389
+ );
390
+ dependencies = (
391
+ );
392
+ name = Specs;
393
+ productName = Specs;
394
+ productType = "com.apple.product-type.application";
395
+ };
396
+ /* End PBXNativeTarget section */
397
+
398
+ /* Begin PBXProject section */
399
+ 7165D447146B4EA100DE2F0E /* Project object */ = {
400
+ isa = PBXProject;
401
+ attributes = {
402
+ LastUpgradeCheck = 0420;
403
+ };
404
+ buildConfigurationList = 7165D44A146B4EA100DE2F0E /* Build configuration list for PBXProject "TestProject" */;
405
+ compatibilityVersion = "Xcode 3.2";
406
+ developmentRegion = English;
407
+ hasScannedForEncodings = 0;
408
+ knownRegions = (
409
+ en,
410
+ );
411
+ mainGroup = 7165D445146B4EA100DE2F0E;
412
+ productRefGroup = 7165D451146B4EA100DE2F0E /* Products */;
413
+ projectDirPath = "";
414
+ projectRoot = "";
415
+ targets = (
416
+ 7165D44F146B4EA100DE2F0E /* TestProject */,
417
+ 7165D46A146B4EA100DE2F0E /* LogicTests */,
418
+ D111C141DDDD1009668E310E /* Specs */,
419
+ 7147F906153E347700763224 /* ApplicationTests */,
420
+ 566BEB5DE68C5E88642EF09E /* Specs */,
421
+ 65AB32971E4767F5B3F12FF7 /* Library */,
422
+ 58214545BF6DA702353B3F50 /* Universal Library */,
423
+ );
424
+ };
425
+ /* End PBXProject section */
426
+
427
+ /* Begin PBXResourcesBuildPhase section */
428
+ 57F7ADA229AE63B1ADB8DA79 /* Resources */ = {
429
+ isa = PBXResourcesBuildPhase;
430
+ buildActionMask = 2147483647;
431
+ files = (
432
+ );
433
+ runOnlyForDeploymentPostprocessing = 0;
434
+ };
435
+ 7147F904153E347700763224 /* Resources */ = {
436
+ isa = PBXResourcesBuildPhase;
437
+ buildActionMask = 2147483647;
438
+ files = (
439
+ 7147F910153E347700763224 /* InfoPlist.strings in Resources */,
440
+ );
441
+ runOnlyForDeploymentPostprocessing = 0;
442
+ };
443
+ 7165D44E146B4EA100DE2F0E /* Resources */ = {
444
+ isa = PBXResourcesBuildPhase;
445
+ buildActionMask = 2147483647;
446
+ files = (
447
+ 7165D45F146B4EA100DE2F0E /* InfoPlist.strings in Resources */,
448
+ );
449
+ runOnlyForDeploymentPostprocessing = 0;
450
+ };
451
+ 7165D468146B4EA100DE2F0E /* Resources */ = {
452
+ isa = PBXResourcesBuildPhase;
453
+ buildActionMask = 2147483647;
454
+ files = (
455
+ 7147F921153E34F900763224 /* InfoPlist.strings in Resources */,
456
+ 7147F922153E34F900763224 /* TestProjectTests-Info.plist in Resources */,
457
+ );
458
+ runOnlyForDeploymentPostprocessing = 0;
459
+ };
460
+ EDC03EB77E9B48B88E3E054E /* Resources */ = {
461
+ isa = PBXResourcesBuildPhase;
462
+ buildActionMask = 2147483647;
463
+ files = (
464
+ 9C7D2C9F6D5E18CB216C01D9 /* InfoPlist.strings in Resources */,
465
+ );
466
+ runOnlyForDeploymentPostprocessing = 0;
467
+ };
468
+ /* End PBXResourcesBuildPhase section */
469
+
470
+ /* Begin PBXShellScriptBuildPhase section */
471
+ 5F4CA7851E60DB3BE876D033 /* ShellScript */ = {
472
+ isa = PBXShellScriptBuildPhase;
473
+ buildActionMask = 2147483647;
474
+ files = (
475
+ );
476
+ inputPaths = (
477
+ );
478
+ outputPaths = (
479
+ );
480
+ runOnlyForDeploymentPostprocessing = 0;
481
+ shellPath = /bin/sh;
482
+ shellScript = "# Sets the target folders and the final framework product.\nFMK_NAME=Library\nFMK_VERSION=A\n\n# Install dir will be the final output to the framework.\n# The following line create it in the root folder of the current project.\nINSTALL_DIR=${SRCROOT}/Products/${FMK_NAME}.framework\n\n# Working dir will be deleted after the framework creation.\nWRK_DIR=build\nDEVICE_DIR=${WRK_DIR}/Release-iphoneos/${FMK_NAME}.framework\nSIMULATOR_DIR=${WRK_DIR}/Release-iphonesimulator/${FMK_NAME}.framework\n\n# Building both architectures.\nxcodebuild -configuration \"Release\" -target \"${FMK_NAME}\" -sdk iphoneos\nxcodebuild -configuration \"Release\" -target \"${FMK_NAME}\" -sdk iphonesimulator\n\n# Cleaning the oldest.\nif [ -d \"${INSTALL_DIR}\" ]\nthen\nrm -rf \"${INSTALL_DIR}\"\nfi\n\n# Creates and renews the final product folder.\nmkdir -p \"${INSTALL_DIR}\"\nmkdir -p \"${INSTALL_DIR}/Versions\"\nmkdir -p \"${INSTALL_DIR}/Versions/${FMK_VERSION}\"\nmkdir -p \"${INSTALL_DIR}/Versions/${FMK_VERSION}/Resources\"\nmkdir -p \"${INSTALL_DIR}/Versions/${FMK_VERSION}/Headers\"\n\n# Creates the internal links.\n# It MUST uses relative path, otherwise will not work when the folder is copied/moved.\nln -s \"${FMK_VERSION}\" \"${INSTALL_DIR}/Versions/Current\"\nln -s \"Versions/Current/Headers\" \"${INSTALL_DIR}/Headers\"\nln -s \"Versions/Current/Resources\" \"${INSTALL_DIR}/Resources\"\nln -s \"Versions/Current/${FMK_NAME}\" \"${INSTALL_DIR}/${FMK_NAME}\"\n\n# Copies the headers and resources files to the final product folder.\ncp -R \"${DEVICE_DIR}/Headers/\" \"${INSTALL_DIR}/Versions/${FMK_VERSION}/Headers/\"\ncp -R \"${DEVICE_DIR}/\" \"${INSTALL_DIR}/Versions/${FMK_VERSION}/Resources/\"\n\n# Removes the binary and header from the resources folder.\nrm -r \"${INSTALL_DIR}/Versions/${FMK_VERSION}/Resources/Headers\" \"${INSTALL_DIR}/Versions/${FMK_VERSION}/Resources/${FMK_NAME}\"\n\n# Uses the Lipo Tool to merge both binary files (i386 + armv6/armv7) into one Universal final product.\nlipo -create \"${DEVICE_DIR}/${FMK_NAME}\" \"${SIMULATOR_DIR}/${FMK_NAME}\" -output \"${INSTALL_DIR}/Versions/${FMK_VERSION}/${FMK_NAME}\"\n\nrm -r \"${WRK_DIR}\"";
483
+ };
484
+ 7147F905153E347700763224 /* ShellScript */ = {
485
+ isa = PBXShellScriptBuildPhase;
486
+ buildActionMask = 2147483647;
487
+ files = (
488
+ );
489
+ inputPaths = (
490
+ );
491
+ outputPaths = (
492
+ );
493
+ runOnlyForDeploymentPostprocessing = 0;
494
+ shellPath = /bin/sh;
495
+ shellScript = "# Run the unit tests in this test bundle.\n\"${SYSTEM_DEVELOPER_DIR}/Tools/RunUnitTests\"\n";
496
+ };
497
+ 7165D469146B4EA100DE2F0E /* ShellScript */ = {
498
+ isa = PBXShellScriptBuildPhase;
499
+ buildActionMask = 2147483647;
500
+ files = (
501
+ );
502
+ inputPaths = (
503
+ );
504
+ outputPaths = (
505
+ );
506
+ runOnlyForDeploymentPostprocessing = 0;
507
+ shellPath = /bin/sh;
508
+ shellScript = "# Run the unit tests in this test bundle.\n\"${SYSTEM_DEVELOPER_DIR}/Tools/RunUnitTests\"\n";
509
+ };
510
+ /* End PBXShellScriptBuildPhase section */
511
+
512
+ /* Begin PBXSourcesBuildPhase section */
513
+ 0EDFE5575605ACDF9AA1B804 /* Sources */ = {
514
+ isa = PBXSourcesBuildPhase;
515
+ buildActionMask = 2147483647;
516
+ files = (
517
+ C53C4507C4848313D64EE1DA /* main.m in Sources */,
518
+ );
519
+ runOnlyForDeploymentPostprocessing = 0;
520
+ };
521
+ 535D4B8B1C8252BDF5D0555D /* Sources */ = {
522
+ isa = PBXSourcesBuildPhase;
523
+ buildActionMask = 2147483647;
524
+ files = (
525
+ 80089621450124F06B08F412 /* AppDelegate.m in Sources */,
526
+ );
527
+ runOnlyForDeploymentPostprocessing = 0;
528
+ };
529
+ 7147F902153E347700763224 /* Sources */ = {
530
+ isa = PBXSourcesBuildPhase;
531
+ buildActionMask = 2147483647;
532
+ files = (
533
+ 7147F913153E347700763224 /* ApplicationTests.m in Sources */,
534
+ );
535
+ runOnlyForDeploymentPostprocessing = 0;
536
+ };
537
+ 7165D44C146B4EA100DE2F0E /* Sources */ = {
538
+ isa = PBXSourcesBuildPhase;
539
+ buildActionMask = 2147483647;
540
+ files = (
541
+ 7165D461146B4EA100DE2F0E /* main.m in Sources */,
542
+ 7165D465146B4EA100DE2F0E /* AppDelegate.m in Sources */,
543
+ );
544
+ runOnlyForDeploymentPostprocessing = 0;
545
+ };
546
+ 7165D466146B4EA100DE2F0E /* Sources */ = {
547
+ isa = PBXSourcesBuildPhase;
548
+ buildActionMask = 2147483647;
549
+ files = (
550
+ 7147F920153E34F900763224 /* AnotherTest.m in Sources */,
551
+ 7147F923153E34F900763224 /* TestProjectTests.m in Sources */,
552
+ );
553
+ runOnlyForDeploymentPostprocessing = 0;
554
+ };
555
+ DDF08A769D3B5B518C166AC6 /* Sources */ = {
556
+ isa = PBXSourcesBuildPhase;
557
+ buildActionMask = 2147483647;
558
+ files = (
559
+ );
560
+ runOnlyForDeploymentPostprocessing = 0;
561
+ };
562
+ /* End PBXSourcesBuildPhase section */
563
+
564
+ /* Begin PBXTargetDependency section */
565
+ 7165D471146B4EA100DE2F0E /* PBXTargetDependency */ = {
566
+ isa = PBXTargetDependency;
567
+ target = 7165D44F146B4EA100DE2F0E /* TestProject */;
568
+ targetProxy = 7165D470146B4EA100DE2F0E /* PBXContainerItemProxy */;
569
+ };
570
+ /* End PBXTargetDependency section */
571
+
572
+ /* Begin PBXVariantGroup section */
573
+ 14178DD0049F392FE2B4AE9C /* InfoPlist.strings */ = {
574
+ isa = PBXVariantGroup;
575
+ children = (
576
+ E6753DC550573D143A9FEC12 /* en */,
577
+ );
578
+ name = InfoPlist.strings;
579
+ path = Specs;
580
+ sourceTree = "<group>";
581
+ };
582
+ 7147F90E153E347700763224 /* InfoPlist.strings */ = {
583
+ isa = PBXVariantGroup;
584
+ children = (
585
+ 7147F90F153E347700763224 /* en */,
586
+ );
587
+ name = InfoPlist.strings;
588
+ sourceTree = "<group>";
589
+ };
590
+ 7147F91B153E34F900763224 /* InfoPlist.strings */ = {
591
+ isa = PBXVariantGroup;
592
+ children = (
593
+ 7147F91C153E34F900763224 /* en */,
594
+ );
595
+ name = InfoPlist.strings;
596
+ sourceTree = "<group>";
597
+ };
598
+ 7165D45D146B4EA100DE2F0E /* InfoPlist.strings */ = {
599
+ isa = PBXVariantGroup;
600
+ children = (
601
+ 7165D45E146B4EA100DE2F0E /* en */,
602
+ );
603
+ name = InfoPlist.strings;
604
+ sourceTree = "<group>";
605
+ };
606
+ /* End PBXVariantGroup section */
607
+
608
+ /* Begin XCBuildConfiguration section */
609
+ 36D643D000BCE3F365BECA4D /* Release */ = {
610
+ isa = XCBuildConfiguration;
611
+ buildSettings = {
612
+ ALWAYS_SEARCH_USER_PATHS = NO;
613
+ ARCHS = "$(ARCHS_STANDARD_32_BIT)";
614
+ "CODE_SIGN_IDENTITY[sdk=>iphoneos*]" = "iPhone Developer";
615
+ COPY_PHASE_STRIP = YES;
616
+ FRAMEWORK_SEARCH_PATHS = (
617
+ "$(inherited)",
618
+ "\"$(SRCROOT)/Vendor/Frameworks\"",
619
+ );
620
+ GCC_C_LANGUAGE_STANDARD = gnu99;
621
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
622
+ GCC_PREFIX_HEADER = "Specs/Specs-Prefix.pch";
623
+ GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
624
+ GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES;
625
+ GCC_WARN_ABOUT_RETURN_TYPE = YES;
626
+ INFOPLIST_FILE = "Specs/Specs-Info.plist";
627
+ IPHONEOS_DEPLOYMENT_TARGET = 5.0;
628
+ OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
629
+ OTHER_LDFLAGS = (
630
+ "-ObjC",
631
+ "-all_load",
632
+ "-lstdc++",
633
+ );
634
+ PRODUCT_NAME = "$(TARGET_NAME)";
635
+ SDKROOT = iphoneos;
636
+ TARGETED_DEVICE_FAMILY = "1,2";
637
+ VALIDATE_PRODUCT = YES;
638
+ WRAPPER_EXTENSION = app;
639
+ };
640
+ name = Release;
641
+ };
642
+ 5DD56BB92762B289DF3E48B5 /* Debug */ = {
643
+ isa = XCBuildConfiguration;
644
+ buildSettings = {
645
+ ALWAYS_SEARCH_USER_PATHS = NO;
646
+ ARCHS = "$(ARCHS_STANDARD_32_BIT)";
647
+ "CODE_SIGN_IDENTITY[sdk=>iphoneos*]" = "iPhone Developer";
648
+ COPY_PHASE_STRIP = YES;
649
+ FRAMEWORK_SEARCH_PATHS = (
650
+ "$(inherited)",
651
+ "\"$(SRCROOT)/Vendor/Frameworks\"",
652
+ );
653
+ GCC_C_LANGUAGE_STANDARD = gnu99;
654
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
655
+ GCC_PREFIX_HEADER = "Specs/Specs-Prefix.pch";
656
+ GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
657
+ GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES;
658
+ GCC_WARN_ABOUT_RETURN_TYPE = YES;
659
+ INFOPLIST_FILE = "Specs/Specs-Info.plist";
660
+ IPHONEOS_DEPLOYMENT_TARGET = 5.0;
661
+ OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
662
+ OTHER_LDFLAGS = (
663
+ "-ObjC",
664
+ "-all_load",
665
+ "-lstdc++",
666
+ );
667
+ PRODUCT_NAME = "$(TARGET_NAME)";
668
+ SDKROOT = iphoneos;
669
+ TARGETED_DEVICE_FAMILY = "1,2";
670
+ VALIDATE_PRODUCT = YES;
671
+ WRAPPER_EXTENSION = app;
672
+ };
673
+ name = Debug;
674
+ };
675
+ 7147F916153E347700763224 /* Debug */ = {
676
+ isa = XCBuildConfiguration;
677
+ buildSettings = {
678
+ BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/TestProject.app/TestProject";
679
+ CLANG_ENABLE_OBJC_ARC = YES;
680
+ FRAMEWORK_SEARCH_PATHS = (
681
+ "$(SDKROOT)/Developer/Library/Frameworks",
682
+ "$(DEVELOPER_LIBRARY_DIR)/Frameworks",
683
+ );
684
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
685
+ GCC_PREFIX_HEADER = "ApplicationTests/ApplicationTests-Prefix.pch";
686
+ GCC_WARN_UNINITIALIZED_AUTOS = YES;
687
+ INFOPLIST_FILE = "ApplicationTests/ApplicationTests-Info.plist";
688
+ IPHONEOS_DEPLOYMENT_TARGET = 5.1;
689
+ PRODUCT_NAME = "$(TARGET_NAME)";
690
+ TEST_HOST = "$(BUNDLE_LOADER)";
691
+ WRAPPER_EXTENSION = octest;
692
+ };
693
+ name = Debug;
694
+ };
695
+ 7147F917153E347700763224 /* Release */ = {
696
+ isa = XCBuildConfiguration;
697
+ buildSettings = {
698
+ CLANG_ENABLE_OBJC_ARC = YES;
699
+ FRAMEWORK_SEARCH_PATHS = (
700
+ "$(SDKROOT)/Developer/Library/Frameworks",
701
+ "$(DEVELOPER_LIBRARY_DIR)/Frameworks",
702
+ );
703
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
704
+ GCC_PREFIX_HEADER = "ApplicationTests/ApplicationTests-Prefix.pch";
705
+ GCC_WARN_UNINITIALIZED_AUTOS = YES;
706
+ INFOPLIST_FILE = "ApplicationTests/ApplicationTests-Info.plist";
707
+ IPHONEOS_DEPLOYMENT_TARGET = 5.1;
708
+ PRODUCT_NAME = "$(TARGET_NAME)";
709
+ WRAPPER_EXTENSION = octest;
710
+ };
711
+ name = Release;
712
+ };
713
+ 7165D47B146B4EA100DE2F0E /* Debug */ = {
714
+ isa = XCBuildConfiguration;
715
+ buildSettings = {
716
+ ALWAYS_SEARCH_USER_PATHS = NO;
717
+ ARCHS = "$(ARCHS_STANDARD_32_BIT)";
718
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
719
+ COPY_PHASE_STRIP = NO;
720
+ GCC_C_LANGUAGE_STANDARD = gnu99;
721
+ GCC_DYNAMIC_NO_PIC = NO;
722
+ GCC_OPTIMIZATION_LEVEL = 0;
723
+ GCC_PREPROCESSOR_DEFINITIONS = (
724
+ "DEBUG=1",
725
+ "$(inherited)",
726
+ );
727
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
728
+ GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
729
+ GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES;
730
+ GCC_WARN_ABOUT_RETURN_TYPE = YES;
731
+ GCC_WARN_UNUSED_VARIABLE = YES;
732
+ IPHONEOS_DEPLOYMENT_TARGET = 5.0;
733
+ SDKROOT = iphoneos;
734
+ TARGETED_DEVICE_FAMILY = "1,2";
735
+ };
736
+ name = Debug;
737
+ };
738
+ 7165D47C146B4EA100DE2F0E /* Release */ = {
739
+ isa = XCBuildConfiguration;
740
+ buildSettings = {
741
+ ALWAYS_SEARCH_USER_PATHS = NO;
742
+ ARCHS = "$(ARCHS_STANDARD_32_BIT)";
743
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
744
+ COPY_PHASE_STRIP = YES;
745
+ GCC_C_LANGUAGE_STANDARD = gnu99;
746
+ GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
747
+ GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES;
748
+ GCC_WARN_ABOUT_RETURN_TYPE = YES;
749
+ GCC_WARN_UNUSED_VARIABLE = YES;
750
+ IPHONEOS_DEPLOYMENT_TARGET = 5.0;
751
+ OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
752
+ SDKROOT = iphoneos;
753
+ TARGETED_DEVICE_FAMILY = "1,2";
754
+ VALIDATE_PRODUCT = YES;
755
+ };
756
+ name = Release;
757
+ };
758
+ 7165D47E146B4EA100DE2F0E /* Debug */ = {
759
+ isa = XCBuildConfiguration;
760
+ buildSettings = {
761
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
762
+ GCC_PREFIX_HEADER = "TestProject/TestProject-Prefix.pch";
763
+ INFOPLIST_FILE = "TestProject/TestProject-Info.plist";
764
+ PRODUCT_NAME = "$(TARGET_NAME)";
765
+ WRAPPER_EXTENSION = app;
766
+ };
767
+ name = Debug;
768
+ };
769
+ 7165D47F146B4EA100DE2F0E /* Release */ = {
770
+ isa = XCBuildConfiguration;
771
+ buildSettings = {
772
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
773
+ GCC_PREFIX_HEADER = "TestProject/TestProject-Prefix.pch";
774
+ INFOPLIST_FILE = "TestProject/TestProject-Info.plist";
775
+ PRODUCT_NAME = "$(TARGET_NAME)";
776
+ WRAPPER_EXTENSION = app;
777
+ };
778
+ name = Release;
779
+ };
780
+ 7165D481146B4EA100DE2F0E /* Debug */ = {
781
+ isa = XCBuildConfiguration;
782
+ buildSettings = {
783
+ BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/TestProject.app/TestProject";
784
+ FRAMEWORK_SEARCH_PATHS = (
785
+ "$(SDKROOT)/Developer/Library/Frameworks",
786
+ "$(DEVELOPER_LIBRARY_DIR)/Frameworks",
787
+ );
788
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
789
+ GCC_PREFIX_HEADER = "TestProject/TestProject-Prefix.pch";
790
+ INFOPLIST_FILE = "LogicTests/TestProjectTests-Info.plist";
791
+ PRODUCT_NAME = "$(TARGET_NAME)";
792
+ TEST_HOST = "";
793
+ WRAPPER_EXTENSION = octest;
794
+ };
795
+ name = Debug;
796
+ };
797
+ 7165D482146B4EA100DE2F0E /* Release */ = {
798
+ isa = XCBuildConfiguration;
799
+ buildSettings = {
800
+ BUNDLE_LOADER = "$(BUILT_PRODUCTS_DIR)/TestProject.app/TestProject";
801
+ FRAMEWORK_SEARCH_PATHS = (
802
+ "$(SDKROOT)/Developer/Library/Frameworks",
803
+ "$(DEVELOPER_LIBRARY_DIR)/Frameworks",
804
+ );
805
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
806
+ GCC_PREFIX_HEADER = "TestProject/TestProject-Prefix.pch";
807
+ INFOPLIST_FILE = "LogicTests/TestProjectTests-Info.plist";
808
+ PRODUCT_NAME = "$(TARGET_NAME)";
809
+ TEST_HOST = "$(BUNDLE_LOADER)";
810
+ WRAPPER_EXTENSION = octest;
811
+ };
812
+ name = Release;
813
+ };
814
+ 904FB8B8EA1BE2A409F5B892 /* Release */ = {
815
+ isa = XCBuildConfiguration;
816
+ buildSettings = {
817
+ ALWAYS_SEARCH_USER_PATHS = NO;
818
+ ARCHS = (
819
+ "$(ARCHS_STANDARD_32_BIT)",
820
+ armv6,
821
+ );
822
+ "CODE_SIGN_IDENTITY[sdk=>iphoneos*]" = "iPhone Developer";
823
+ COPY_PHASE_STRIP = YES;
824
+ DEAD_CODE_STRIPPING = NO;
825
+ DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
826
+ GCC_C_LANGUAGE_STANDARD = gnu99;
827
+ GCC_ENABLE_OBJC_EXCEPTIONS = YES;
828
+ GCC_GENERATE_DEBUGGING_SYMBOLS = NO;
829
+ GCC_PRECOMPILE_PREFIX_HEADER = NO;
830
+ GCC_PREFIX_HEADER = "";
831
+ GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
832
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
833
+ GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES;
834
+ GCC_WARN_ABOUT_RETURN_TYPE = YES;
835
+ INFOPLIST_FILE = "";
836
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Bundles";
837
+ IPHONEOS_DEPLOYMENT_TARGET = 5.0;
838
+ LINK_WITH_STANDARD_LIBRARIES = NO;
839
+ MACH_O_TYPE = mh_object;
840
+ MACOSX_DEPLOYMENT_TARGET = 10.7;
841
+ OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
842
+ PRODUCT_NAME = "$(TARGET_NAME)";
843
+ SDKROOT = iphoneos;
844
+ TARGETED_DEVICE_FAMILY = "1,2";
845
+ VALIDATE_PRODUCT = YES;
846
+ VALID_ARCHS = "$(ARCHS_STANDARD_32_BIT)";
847
+ WRAPPER_EXTENSION = framework;
848
+ };
849
+ name = Release;
850
+ };
851
+ 9DD0F856744EE2F634D435BF /* Debug */ = {
852
+ isa = XCBuildConfiguration;
853
+ buildSettings = {
854
+ ALWAYS_SEARCH_USER_PATHS = NO;
855
+ ARCHS = "$(ARCHS_STANDARD_32_BIT)";
856
+ "CODE_SIGN_IDENTITY[sdk=>iphoneos*]" = "iPhone Developer";
857
+ COPY_PHASE_STRIP = YES;
858
+ FRAMEWORK_SEARCH_PATHS = (
859
+ "$(inherited)",
860
+ "\"$(SRCROOT)/Vendor/Frameworks\"",
861
+ );
862
+ GCC_C_LANGUAGE_STANDARD = gnu99;
863
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
864
+ GCC_PREFIX_HEADER = "Specs/Specs-Prefix.pch";
865
+ GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
866
+ GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES;
867
+ GCC_WARN_ABOUT_RETURN_TYPE = YES;
868
+ INFOPLIST_FILE = "Specs/Specs-Info.plist";
869
+ IPHONEOS_DEPLOYMENT_TARGET = 5.0;
870
+ OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
871
+ OTHER_LDFLAGS = (
872
+ "-ObjC",
873
+ "-all_load",
874
+ "-lstdc++",
875
+ );
876
+ PRODUCT_NAME = "$(TARGET_NAME)";
877
+ SDKROOT = iphoneos;
878
+ TARGETED_DEVICE_FAMILY = "1,2";
879
+ VALIDATE_PRODUCT = YES;
880
+ WRAPPER_EXTENSION = app;
881
+ };
882
+ name = Debug;
883
+ };
884
+ C4A2F7E596653FE7E40DEEA4 /* Release */ = {
885
+ isa = XCBuildConfiguration;
886
+ buildSettings = {
887
+ ALWAYS_SEARCH_USER_PATHS = NO;
888
+ ARCHS = "$(ARCHS_STANDARD_32_BIT)";
889
+ "CODE_SIGN_IDENTITY[sdk=>iphoneos*]" = "iPhone Developer";
890
+ COPY_PHASE_STRIP = YES;
891
+ GCC_C_LANGUAGE_STANDARD = gnu99;
892
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
893
+ GCC_PREFIX_HEADER = "Release/Release-Prefix.pch";
894
+ GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
895
+ GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES;
896
+ GCC_WARN_ABOUT_RETURN_TYPE = YES;
897
+ INFOPLIST_FILE = "Release/Release-Info.plist";
898
+ IPHONEOS_DEPLOYMENT_TARGET = 5.0;
899
+ OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
900
+ PRODUCT_NAME = "$(TARGET_NAME)";
901
+ SDKROOT = iphoneos;
902
+ TARGETED_DEVICE_FAMILY = "1,2";
903
+ VALIDATE_PRODUCT = YES;
904
+ WRAPPER_EXTENSION = app;
905
+ };
906
+ name = Release;
907
+ };
908
+ F3367A702467F6782D255B43 /* Release */ = {
909
+ isa = XCBuildConfiguration;
910
+ buildSettings = {
911
+ ALWAYS_SEARCH_USER_PATHS = NO;
912
+ ARCHS = "$(ARCHS_STANDARD_32_BIT)";
913
+ "CODE_SIGN_IDENTITY[sdk=>iphoneos*]" = "iPhone Developer";
914
+ COPY_PHASE_STRIP = YES;
915
+ FRAMEWORK_SEARCH_PATHS = (
916
+ "$(inherited)",
917
+ "\"$(SRCROOT)/Vendor/Frameworks\"",
918
+ );
919
+ GCC_C_LANGUAGE_STANDARD = gnu99;
920
+ GCC_PRECOMPILE_PREFIX_HEADER = YES;
921
+ GCC_PREFIX_HEADER = "Specs/Specs-Prefix.pch";
922
+ GCC_VERSION = com.apple.compilers.llvm.clang.1_0;
923
+ GCC_WARN_ABOUT_MISSING_PROTOTYPES = YES;
924
+ GCC_WARN_ABOUT_RETURN_TYPE = YES;
925
+ INFOPLIST_FILE = "Specs/Specs-Info.plist";
926
+ IPHONEOS_DEPLOYMENT_TARGET = 5.0;
927
+ OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
928
+ OTHER_LDFLAGS = (
929
+ "-ObjC",
930
+ "-all_load",
931
+ "-lstdc++",
932
+ );
933
+ PRODUCT_NAME = "$(TARGET_NAME)";
934
+ SDKROOT = iphoneos;
935
+ TARGETED_DEVICE_FAMILY = "1,2";
936
+ VALIDATE_PRODUCT = YES;
937
+ WRAPPER_EXTENSION = app;
938
+ };
939
+ name = Release;
940
+ };
941
+ /* End XCBuildConfiguration section */
942
+
943
+ /* Begin XCConfigurationList section */
944
+ 31C3DED5AEA103F02B771419 /* Build configuration list for PBXAggregateTarget "Universal Library" */ = {
945
+ isa = XCConfigurationList;
946
+ buildConfigurations = (
947
+ C4A2F7E596653FE7E40DEEA4 /* Release */,
948
+ );
949
+ defaultConfigurationIsVisible = 0;
950
+ defaultConfigurationName = "";
951
+ };
952
+ 321235C2FF8A1C5D8F0BF226 /* Build configuration list for PBXNativeTarget "Library" */ = {
953
+ isa = XCConfigurationList;
954
+ buildConfigurations = (
955
+ 904FB8B8EA1BE2A409F5B892 /* Release */,
956
+ );
957
+ defaultConfigurationIsVisible = 0;
958
+ defaultConfigurationName = "";
959
+ };
960
+ 4E978B8B93F56FB06E5BFBCA /* Build configuration list for PBXNativeTarget "Specs" */ = {
961
+ isa = XCConfigurationList;
962
+ buildConfigurations = (
963
+ 5DD56BB92762B289DF3E48B5 /* Debug */,
964
+ 36D643D000BCE3F365BECA4D /* Release */,
965
+ );
966
+ defaultConfigurationIsVisible = 0;
967
+ defaultConfigurationName = "";
968
+ };
969
+ 7147F915153E347700763224 /* Build configuration list for PBXNativeTarget "ApplicationTests" */ = {
970
+ isa = XCConfigurationList;
971
+ buildConfigurations = (
972
+ 7147F916153E347700763224 /* Debug */,
973
+ 7147F917153E347700763224 /* Release */,
974
+ );
975
+ defaultConfigurationIsVisible = 0;
976
+ defaultConfigurationName = Release;
977
+ };
978
+ 7165D44A146B4EA100DE2F0E /* Build configuration list for PBXProject "TestProject" */ = {
979
+ isa = XCConfigurationList;
980
+ buildConfigurations = (
981
+ 7165D47B146B4EA100DE2F0E /* Debug */,
982
+ 7165D47C146B4EA100DE2F0E /* Release */,
983
+ );
984
+ defaultConfigurationIsVisible = 0;
985
+ defaultConfigurationName = Release;
986
+ };
987
+ 7165D47D146B4EA100DE2F0E /* Build configuration list for PBXNativeTarget "TestProject" */ = {
988
+ isa = XCConfigurationList;
989
+ buildConfigurations = (
990
+ 7165D47E146B4EA100DE2F0E /* Debug */,
991
+ 7165D47F146B4EA100DE2F0E /* Release */,
992
+ );
993
+ defaultConfigurationIsVisible = 0;
994
+ defaultConfigurationName = Release;
995
+ };
996
+ 7165D480146B4EA100DE2F0E /* Build configuration list for PBXNativeTarget "LogicTests" */ = {
997
+ isa = XCConfigurationList;
998
+ buildConfigurations = (
999
+ 7165D481146B4EA100DE2F0E /* Debug */,
1000
+ 7165D482146B4EA100DE2F0E /* Release */,
1001
+ );
1002
+ defaultConfigurationIsVisible = 0;
1003
+ defaultConfigurationName = Release;
1004
+ };
1005
+ C93D39FEB82CC9442CE94908 /* Build configuration list for PBXNativeTarget "Specs" */ = {
1006
+ isa = XCConfigurationList;
1007
+ buildConfigurations = (
1008
+ 9DD0F856744EE2F634D435BF /* Debug */,
1009
+ F3367A702467F6782D255B43 /* Release */,
1010
+ );
1011
+ defaultConfigurationIsVisible = 0;
1012
+ defaultConfigurationName = "";
1013
+ };
1014
+ /* End XCConfigurationList section */
1015
+ };
1016
+ rootObject = 7165D447146B4EA100DE2F0E /* Project object */;
1017
+ }