xcoder 0.1.12 → 0.1.13
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/xcode/build_phase.rb +1 -1
- data/lib/xcode/parsers/plutil_project_parser.rb +24 -8
- data/lib/xcode/project.rb +14 -25
- data/lib/xcode/scheme.rb +30 -5
- data/lib/xcode/test/report.rb +0 -1
- data/lib/xcode/version.rb +1 -1
- data/lib/xcode/workspace.rb +39 -6
- data/lib/xcoder.rb +10 -2
- data/spec/TestProject/TestProject.xcodeproj/project.pbxproj +1016 -1329
- data/spec/TestWorkspace.xcworkspace/xcshareddata/xcschemes/WorkspaceScheme.xcscheme +85 -0
- data/spec/builder_spec.rb +6 -6
- data/spec/parsers/plutil_project_parser.rb +47 -0
- data/spec/parsers/spec_helper.rb +1 -0
- data/spec/scheme_spec.rb +42 -4
- metadata +19 -19
- data/bin/xcoder-build +0 -8
- data/spec/TestWorkspace.xcworkspace/xcuserdata/ray.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- data/spec/TestWorkspace2.xcworkspace/xcuserdata/ray.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
data/lib/xcode/build_phase.rb
CHANGED
@@ -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.
|
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
|
14
|
-
|
15
|
-
|
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
|
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
|
-
|
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
|
-
|
66
|
-
|
67
|
-
|
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 "#{
|
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 =
|
233
|
-
raise "No such scheme #{name}, available schemes are #{
|
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 :
|
10
|
-
def initialize(
|
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
|
-
|
32
|
-
|
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
|
data/lib/xcode/test/report.rb
CHANGED
data/lib/xcode/version.rb
CHANGED
data/lib/xcode/workspace.rb
CHANGED
@@ -5,14 +5,14 @@ module Xcode
|
|
5
5
|
class Workspace
|
6
6
|
attr_reader :projects, :name, :path
|
7
7
|
def initialize(path)
|
8
|
-
path
|
9
|
-
path = "#{path}/contents.xcworkspacedata" unless path=~/xcworkspacedata$/
|
8
|
+
path = "#{path}.xcworkspace" unless path=~/\.xcworkspace/
|
10
9
|
|
11
|
-
@name
|
10
|
+
@name = File.basename(path.gsub(/\.xcworkspace/,''))
|
12
11
|
@projects = []
|
13
|
-
@
|
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(
|
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
|
-
|
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
|
-
|
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
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
"
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
"
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
83
|
-
|
84
|
-
|
85
|
-
|
86
|
-
"
|
87
|
-
"
|
88
|
-
|
89
|
-
"
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
|
103
|
-
|
104
|
-
|
105
|
-
|
106
|
-
|
107
|
-
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
122
|
-
|
123
|
-
|
124
|
-
|
125
|
-
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
144
|
-
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
|
169
|
-
|
170
|
-
|
171
|
-
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
179
|
-
|
180
|
-
|
181
|
-
|
182
|
-
|
183
|
-
|
184
|
-
|
185
|
-
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
"
|
191
|
-
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
216
|
-
|
217
|
-
|
218
|
-
|
219
|
-
|
220
|
-
|
221
|
-
|
222
|
-
|
223
|
-
|
224
|
-
|
225
|
-
|
226
|
-
|
227
|
-
|
228
|
-
|
229
|
-
|
230
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
"
|
238
|
-
|
239
|
-
|
240
|
-
|
241
|
-
|
242
|
-
|
243
|
-
|
244
|
-
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
|
250
|
-
|
251
|
-
|
252
|
-
|
253
|
-
|
254
|
-
|
255
|
-
|
256
|
-
|
257
|
-
|
258
|
-
|
259
|
-
|
260
|
-
|
261
|
-
|
262
|
-
|
263
|
-
|
264
|
-
|
265
|
-
|
266
|
-
|
267
|
-
|
268
|
-
|
269
|
-
|
270
|
-
|
271
|
-
|
272
|
-
|
273
|
-
|
274
|
-
|
275
|
-
|
276
|
-
|
277
|
-
|
278
|
-
|
279
|
-
|
280
|
-
|
281
|
-
|
282
|
-
|
283
|
-
|
284
|
-
|
285
|
-
|
286
|
-
|
287
|
-
|
288
|
-
|
289
|
-
|
290
|
-
|
291
|
-
|
292
|
-
|
293
|
-
|
294
|
-
|
295
|
-
|
296
|
-
|
297
|
-
|
298
|
-
|
299
|
-
|
300
|
-
|
301
|
-
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
|
308
|
-
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
|
313
|
-
|
314
|
-
|
315
|
-
|
316
|
-
|
317
|
-
|
318
|
-
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
|
323
|
-
"
|
324
|
-
"
|
325
|
-
|
326
|
-
|
327
|
-
|
328
|
-
"
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
339
|
-
|
340
|
-
|
341
|
-
|
342
|
-
|
343
|
-
|
344
|
-
|
345
|
-
|
346
|
-
|
347
|
-
|
348
|
-
|
349
|
-
|
350
|
-
|
351
|
-
|
352
|
-
|
353
|
-
|
354
|
-
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
|
386
|
-
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
426
|
-
|
427
|
-
|
428
|
-
|
429
|
-
|
430
|
-
|
431
|
-
|
432
|
-
|
433
|
-
|
434
|
-
|
435
|
-
|
436
|
-
|
437
|
-
|
438
|
-
|
439
|
-
|
440
|
-
|
441
|
-
|
442
|
-
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
|
451
|
-
|
452
|
-
|
453
|
-
|
454
|
-
|
455
|
-
|
456
|
-
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
|
472
|
-
|
473
|
-
|
474
|
-
|
475
|
-
|
476
|
-
|
477
|
-
|
478
|
-
|
479
|
-
|
480
|
-
|
481
|
-
|
482
|
-
"
|
483
|
-
|
484
|
-
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
"
|
496
|
-
|
497
|
-
|
498
|
-
|
499
|
-
|
500
|
-
|
501
|
-
|
502
|
-
|
503
|
-
|
504
|
-
|
505
|
-
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
|
517
|
-
|
518
|
-
|
519
|
-
|
520
|
-
|
521
|
-
|
522
|
-
|
523
|
-
|
524
|
-
|
525
|
-
|
526
|
-
|
527
|
-
|
528
|
-
|
529
|
-
|
530
|
-
|
531
|
-
|
532
|
-
|
533
|
-
|
534
|
-
|
535
|
-
|
536
|
-
|
537
|
-
|
538
|
-
|
539
|
-
|
540
|
-
|
541
|
-
|
542
|
-
|
543
|
-
|
544
|
-
|
545
|
-
|
546
|
-
|
547
|
-
|
548
|
-
|
549
|
-
|
550
|
-
|
551
|
-
|
552
|
-
|
553
|
-
|
554
|
-
|
555
|
-
|
556
|
-
|
557
|
-
|
558
|
-
|
559
|
-
|
560
|
-
|
561
|
-
|
562
|
-
|
563
|
-
|
564
|
-
|
565
|
-
|
566
|
-
|
567
|
-
|
568
|
-
|
569
|
-
|
570
|
-
|
571
|
-
|
572
|
-
|
573
|
-
|
574
|
-
|
575
|
-
|
576
|
-
|
577
|
-
|
578
|
-
|
579
|
-
|
580
|
-
|
581
|
-
|
582
|
-
|
583
|
-
|
584
|
-
|
585
|
-
|
586
|
-
|
587
|
-
|
588
|
-
|
589
|
-
|
590
|
-
|
591
|
-
|
592
|
-
|
593
|
-
|
594
|
-
|
595
|
-
|
596
|
-
|
597
|
-
|
598
|
-
|
599
|
-
|
600
|
-
|
601
|
-
|
602
|
-
|
603
|
-
|
604
|
-
|
605
|
-
|
606
|
-
|
607
|
-
|
608
|
-
|
609
|
-
|
610
|
-
|
611
|
-
|
612
|
-
|
613
|
-
|
614
|
-
|
615
|
-
|
616
|
-
|
617
|
-
|
618
|
-
"
|
619
|
-
|
620
|
-
|
621
|
-
|
622
|
-
|
623
|
-
|
624
|
-
|
625
|
-
|
626
|
-
|
627
|
-
|
628
|
-
|
629
|
-
|
630
|
-
|
631
|
-
"
|
632
|
-
|
633
|
-
|
634
|
-
|
635
|
-
|
636
|
-
|
637
|
-
|
638
|
-
|
639
|
-
|
640
|
-
|
641
|
-
|
642
|
-
|
643
|
-
|
644
|
-
|
645
|
-
|
646
|
-
|
647
|
-
|
648
|
-
|
649
|
-
|
650
|
-
"
|
651
|
-
|
652
|
-
|
653
|
-
|
654
|
-
|
655
|
-
|
656
|
-
|
657
|
-
|
658
|
-
|
659
|
-
|
660
|
-
|
661
|
-
|
662
|
-
|
663
|
-
|
664
|
-
|
665
|
-
"
|
666
|
-
|
667
|
-
|
668
|
-
|
669
|
-
|
670
|
-
|
671
|
-
|
672
|
-
|
673
|
-
|
674
|
-
|
675
|
-
|
676
|
-
|
677
|
-
|
678
|
-
|
679
|
-
|
680
|
-
|
681
|
-
"SDKROOT"
|
682
|
-
"
|
683
|
-
|
684
|
-
|
685
|
-
|
686
|
-
|
687
|
-
|
688
|
-
|
689
|
-
|
690
|
-
|
691
|
-
|
692
|
-
|
693
|
-
|
694
|
-
|
695
|
-
|
696
|
-
|
697
|
-
|
698
|
-
|
699
|
-
|
700
|
-
"SDKROOT"
|
701
|
-
"
|
702
|
-
|
703
|
-
|
704
|
-
|
705
|
-
|
706
|
-
|
707
|
-
|
708
|
-
|
709
|
-
|
710
|
-
|
711
|
-
|
712
|
-
|
713
|
-
|
714
|
-
|
715
|
-
|
716
|
-
|
717
|
-
|
718
|
-
|
719
|
-
|
720
|
-
|
721
|
-
|
722
|
-
|
723
|
-
|
724
|
-
"
|
725
|
-
"
|
726
|
-
|
727
|
-
|
728
|
-
|
729
|
-
|
730
|
-
|
731
|
-
|
732
|
-
|
733
|
-
|
734
|
-
|
735
|
-
|
736
|
-
|
737
|
-
|
738
|
-
|
739
|
-
|
740
|
-
|
741
|
-
|
742
|
-
|
743
|
-
"
|
744
|
-
|
745
|
-
|
746
|
-
|
747
|
-
|
748
|
-
|
749
|
-
|
750
|
-
|
751
|
-
|
752
|
-
|
753
|
-
|
754
|
-
|
755
|
-
|
756
|
-
|
757
|
-
|
758
|
-
|
759
|
-
|
760
|
-
|
761
|
-
|
762
|
-
|
763
|
-
|
764
|
-
|
765
|
-
|
766
|
-
|
767
|
-
|
768
|
-
|
769
|
-
|
770
|
-
|
771
|
-
|
772
|
-
|
773
|
-
|
774
|
-
|
775
|
-
|
776
|
-
|
777
|
-
|
778
|
-
|
779
|
-
|
780
|
-
|
781
|
-
|
782
|
-
|
783
|
-
|
784
|
-
|
785
|
-
"
|
786
|
-
"
|
787
|
-
|
788
|
-
|
789
|
-
"
|
790
|
-
|
791
|
-
|
792
|
-
|
793
|
-
|
794
|
-
|
795
|
-
|
796
|
-
|
797
|
-
|
798
|
-
|
799
|
-
|
800
|
-
|
801
|
-
|
802
|
-
"
|
803
|
-
"
|
804
|
-
|
805
|
-
|
806
|
-
|
807
|
-
|
808
|
-
|
809
|
-
|
810
|
-
|
811
|
-
|
812
|
-
|
813
|
-
|
814
|
-
|
815
|
-
|
816
|
-
|
817
|
-
|
818
|
-
|
819
|
-
"
|
820
|
-
|
821
|
-
|
822
|
-
|
823
|
-
|
824
|
-
|
825
|
-
|
826
|
-
|
827
|
-
|
828
|
-
|
829
|
-
|
830
|
-
|
831
|
-
|
832
|
-
|
833
|
-
|
834
|
-
|
835
|
-
|
836
|
-
|
837
|
-
|
838
|
-
|
839
|
-
|
840
|
-
|
841
|
-
|
842
|
-
|
843
|
-
|
844
|
-
|
845
|
-
|
846
|
-
|
847
|
-
|
848
|
-
|
849
|
-
|
850
|
-
|
851
|
-
|
852
|
-
|
853
|
-
|
854
|
-
|
855
|
-
|
856
|
-
|
857
|
-
|
858
|
-
|
859
|
-
"
|
860
|
-
"
|
861
|
-
|
862
|
-
|
863
|
-
|
864
|
-
|
865
|
-
|
866
|
-
|
867
|
-
|
868
|
-
|
869
|
-
|
870
|
-
"-
|
871
|
-
|
872
|
-
|
873
|
-
"
|
874
|
-
"
|
875
|
-
|
876
|
-
|
877
|
-
|
878
|
-
|
879
|
-
|
880
|
-
|
881
|
-
|
882
|
-
|
883
|
-
|
884
|
-
|
885
|
-
|
886
|
-
|
887
|
-
|
888
|
-
|
889
|
-
|
890
|
-
|
891
|
-
|
892
|
-
|
893
|
-
|
894
|
-
|
895
|
-
|
896
|
-
|
897
|
-
|
898
|
-
|
899
|
-
|
900
|
-
|
901
|
-
|
902
|
-
"
|
903
|
-
|
904
|
-
|
905
|
-
|
906
|
-
|
907
|
-
|
908
|
-
|
909
|
-
|
910
|
-
|
911
|
-
|
912
|
-
|
913
|
-
"
|
914
|
-
|
915
|
-
|
916
|
-
|
917
|
-
"
|
918
|
-
|
919
|
-
|
920
|
-
|
921
|
-
|
922
|
-
|
923
|
-
|
924
|
-
|
925
|
-
|
926
|
-
|
927
|
-
|
928
|
-
|
929
|
-
"
|
930
|
-
|
931
|
-
"
|
932
|
-
|
933
|
-
|
934
|
-
|
935
|
-
|
936
|
-
|
937
|
-
|
938
|
-
|
939
|
-
|
940
|
-
|
941
|
-
|
942
|
-
|
943
|
-
|
944
|
-
|
945
|
-
|
946
|
-
|
947
|
-
|
948
|
-
|
949
|
-
|
950
|
-
|
951
|
-
|
952
|
-
"
|
953
|
-
|
954
|
-
|
955
|
-
|
956
|
-
|
957
|
-
|
958
|
-
|
959
|
-
|
960
|
-
|
961
|
-
|
962
|
-
|
963
|
-
|
964
|
-
|
965
|
-
|
966
|
-
|
967
|
-
|
968
|
-
|
969
|
-
|
970
|
-
|
971
|
-
|
972
|
-
|
973
|
-
|
974
|
-
|
975
|
-
|
976
|
-
|
977
|
-
|
978
|
-
|
979
|
-
|
980
|
-
|
981
|
-
|
982
|
-
|
983
|
-
|
984
|
-
|
985
|
-
|
986
|
-
|
987
|
-
"
|
988
|
-
|
989
|
-
|
990
|
-
|
991
|
-
|
992
|
-
|
993
|
-
|
994
|
-
|
995
|
-
|
996
|
-
|
997
|
-
|
998
|
-
|
999
|
-
|
1000
|
-
|
1001
|
-
|
1002
|
-
|
1003
|
-
|
1004
|
-
|
1005
|
-
"
|
1006
|
-
|
1007
|
-
|
1008
|
-
|
1009
|
-
|
1010
|
-
|
1011
|
-
|
1012
|
-
|
1013
|
-
|
1014
|
-
|
1015
|
-
|
1016
|
-
|
1017
|
-
|
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
|
+
}
|