pbxproject 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.document +5 -0
- data/.rspec +2 -0
- data/Gemfile +13 -0
- data/Gemfile.lock +28 -0
- data/LICENSE.txt +20 -0
- data/README.rdoc +19 -0
- data/Rakefile +51 -0
- data/VERSION +1 -0
- data/bin/pbxproject +7 -0
- data/data.pbxproj +337 -0
- data/examples/project.pbxproj +337 -0
- data/examples/project.pbxproj.new +337 -0
- data/lib/pbxproject.rb +2 -0
- data/lib/pbxproject/cli.rb +22 -0
- data/lib/pbxproject/pbxproject.rb +258 -0
- data/lib/pbxproject/pbxtypes.rb +326 -0
- data/pbxproject.gemspec +73 -0
- data/spec/pbxproject_spec.rb +187 -0
- data/spec/spec_helper.rb +12 -0
- metadata +122 -0
data/.document
ADDED
data/.rspec
ADDED
data/Gemfile
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
source "http://rubygems.org"
|
2
|
+
# Add dependencies required to use your gem here.
|
3
|
+
# Example:
|
4
|
+
# gem "activesupport", ">= 2.3.5"
|
5
|
+
|
6
|
+
# Add dependencies to develop your gem here.
|
7
|
+
# Include everything needed to run rake, tests, features, etc.
|
8
|
+
group :development do
|
9
|
+
gem "rspec", "~> 2.3.0"
|
10
|
+
gem "bundler", "~> 1.0.0"
|
11
|
+
gem "jeweler", "~> 1.5.2"
|
12
|
+
gem "rcov", ">= 0"
|
13
|
+
end
|
data/Gemfile.lock
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
GEM
|
2
|
+
remote: http://rubygems.org/
|
3
|
+
specs:
|
4
|
+
diff-lcs (1.1.2)
|
5
|
+
git (1.2.5)
|
6
|
+
jeweler (1.5.2)
|
7
|
+
bundler (~> 1.0.0)
|
8
|
+
git (>= 1.2.5)
|
9
|
+
rake
|
10
|
+
rake (0.8.7)
|
11
|
+
rcov (0.9.9)
|
12
|
+
rspec (2.3.0)
|
13
|
+
rspec-core (~> 2.3.0)
|
14
|
+
rspec-expectations (~> 2.3.0)
|
15
|
+
rspec-mocks (~> 2.3.0)
|
16
|
+
rspec-core (2.3.1)
|
17
|
+
rspec-expectations (2.3.0)
|
18
|
+
diff-lcs (~> 1.1.2)
|
19
|
+
rspec-mocks (2.3.0)
|
20
|
+
|
21
|
+
PLATFORMS
|
22
|
+
ruby
|
23
|
+
|
24
|
+
DEPENDENCIES
|
25
|
+
bundler (~> 1.0.0)
|
26
|
+
jeweler (~> 1.5.2)
|
27
|
+
rcov
|
28
|
+
rspec (~> 2.3.0)
|
data/LICENSE.txt
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2011 Mikko Kokkonen
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.rdoc
ADDED
@@ -0,0 +1,19 @@
|
|
1
|
+
= pbxproject
|
2
|
+
|
3
|
+
Description goes here.
|
4
|
+
|
5
|
+
== Contributing to pbxproject
|
6
|
+
|
7
|
+
* Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet
|
8
|
+
* Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it
|
9
|
+
* Fork the project
|
10
|
+
* Start a feature/bugfix branch
|
11
|
+
* Commit and push until you are happy with your contribution
|
12
|
+
* Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
|
13
|
+
* Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
|
14
|
+
|
15
|
+
== Copyright
|
16
|
+
|
17
|
+
Copyright (c) 2011 Mikko Kokkonen. See LICENSE.txt for
|
18
|
+
further details.
|
19
|
+
|
data/Rakefile
ADDED
@@ -0,0 +1,51 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'bundler'
|
3
|
+
begin
|
4
|
+
Bundler.setup(:default, :development)
|
5
|
+
rescue Bundler::BundlerError => e
|
6
|
+
$stderr.puts e.message
|
7
|
+
$stderr.puts "Run `bundle install` to install missing gems"
|
8
|
+
exit e.status_code
|
9
|
+
end
|
10
|
+
require 'rake'
|
11
|
+
|
12
|
+
require 'jeweler'
|
13
|
+
Jeweler::Tasks.new do |gem|
|
14
|
+
# gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
|
15
|
+
gem.name = "pbxproject"
|
16
|
+
gem.homepage = "http://github.com/mikian/pbxproject"
|
17
|
+
gem.license = "MIT"
|
18
|
+
gem.summary = %Q{XCode 4 project management}
|
19
|
+
gem.description = %Q{makes managing XCode 4 project files as easy as modifying ruby classes.}
|
20
|
+
gem.email = "mikko.kokkonen@me.com"
|
21
|
+
gem.authors = ["Mikko Kokkonen"]
|
22
|
+
gem.executables = ["pbxproject"]
|
23
|
+
# Include your dependencies below. Runtime dependencies are required when using your gem,
|
24
|
+
# and development dependencies are only needed for development (ie running rake tasks, tests, etc)
|
25
|
+
# gem.add_runtime_dependency 'jabber4r', '> 0.1'
|
26
|
+
# gem.add_development_dependency 'rspec', '> 1.2.3'
|
27
|
+
end
|
28
|
+
Jeweler::RubygemsDotOrgTasks.new
|
29
|
+
|
30
|
+
require 'rspec/core'
|
31
|
+
require 'rspec/core/rake_task'
|
32
|
+
RSpec::Core::RakeTask.new(:spec) do |spec|
|
33
|
+
spec.pattern = FileList['spec/**/*_spec.rb']
|
34
|
+
end
|
35
|
+
|
36
|
+
RSpec::Core::RakeTask.new(:rcov) do |spec|
|
37
|
+
spec.pattern = 'spec/**/*_spec.rb'
|
38
|
+
spec.rcov = true
|
39
|
+
end
|
40
|
+
|
41
|
+
task :default => :spec
|
42
|
+
|
43
|
+
require 'rake/rdoctask'
|
44
|
+
Rake::RDocTask.new do |rdoc|
|
45
|
+
version = File.exist?('VERSION') ? File.read('VERSION') : ""
|
46
|
+
|
47
|
+
rdoc.rdoc_dir = 'rdoc'
|
48
|
+
rdoc.title = "pbxproject #{version}"
|
49
|
+
rdoc.rdoc_files.include('README*')
|
50
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
51
|
+
end
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
0.1.0
|
data/bin/pbxproject
ADDED
data/data.pbxproj
ADDED
@@ -0,0 +1,337 @@
|
|
1
|
+
// !$*UTF8*$!
|
2
|
+
{
|
3
|
+
archiveVersion = 1;
|
4
|
+
classes = {
|
5
|
+
};
|
6
|
+
objectVersion = 46;
|
7
|
+
objects = {
|
8
|
+
|
9
|
+
/* Begin PBXBuildFile section */
|
10
|
+
C0D293A3135FD66E001979A0 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C0D293A2135FD66E001979A0 /* UIKit.framework */; };
|
11
|
+
C0D293A5135FD66E001979A0 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C0D293A4135FD66E001979A0 /* Foundation.framework */; };
|
12
|
+
C0D293A7135FD66E001979A0 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = C0D293A6135FD66E001979A0 /* CoreGraphics.framework */; };
|
13
|
+
C0D293AD135FD66E001979A0 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = C0D293AB135FD66E001979A0 /* InfoPlist.strings */; };
|
14
|
+
C0D293B0135FD66E001979A0 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = C0D293AF135FD66E001979A0 /* main.m */; };
|
15
|
+
C0D293B3135FD66E001979A0 /* FooAppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = C0D293B2135FD66E001979A0 /* FooAppDelegate.m */; };
|
16
|
+
C0D293B7135FD66F001979A0 /* FooAppDelegate_iPhone.m in Sources */ = {isa = PBXBuildFile; fileRef = C0D293B6135FD66F001979A0 /* FooAppDelegate_iPhone.m */; };
|
17
|
+
C0D293BA135FD66F001979A0 /* MainWindow_iPhone.xib in Resources */ = {isa = PBXBuildFile; fileRef = C0D293B8135FD66F001979A0 /* MainWindow_iPhone.xib */; };
|
18
|
+
C0D293BE135FD66F001979A0 /* FooAppDelegate_iPad.m in Sources */ = {isa = PBXBuildFile; fileRef = C0D293BD135FD66F001979A0 /* FooAppDelegate_iPad.m */; };
|
19
|
+
C0D293C1135FD66F001979A0 /* MainWindow_iPad.xib in Resources */ = {isa = PBXBuildFile; fileRef = C0D293BF135FD66F001979A0 /* MainWindow_iPad.xib */; };
|
20
|
+
/* End PBXBuildFile section */
|
21
|
+
|
22
|
+
/* Begin PBXFileReference section */
|
23
|
+
C0D2939E135FD66E001979A0 /* Foo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Foo.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
24
|
+
C0D293A2135FD66E001979A0 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = System/Library/Frameworks/UIKit.framework; sourceTree = SDKROOT; };
|
25
|
+
C0D293A4135FD66E001979A0 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
|
26
|
+
C0D293A6135FD66E001979A0 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; };
|
27
|
+
C0D293AA135FD66E001979A0 /* Foo-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Foo-Info.plist"; sourceTree = "<group>"; };
|
28
|
+
C0D293AC135FD66E001979A0 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
|
29
|
+
C0D293AE135FD66E001979A0 /* Foo-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Foo-Prefix.pch"; sourceTree = "<group>"; };
|
30
|
+
C0D293AF135FD66E001979A0 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
|
31
|
+
C0D293B1135FD66E001979A0 /* FooAppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = FooAppDelegate.h; sourceTree = "<group>"; };
|
32
|
+
C0D293B2135FD66E001979A0 /* FooAppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = FooAppDelegate.m; sourceTree = "<group>"; };
|
33
|
+
C0D293B5135FD66F001979A0 /* FooAppDelegate_iPhone.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = FooAppDelegate_iPhone.h; path = iPhone/FooAppDelegate_iPhone.h; sourceTree = "<group>"; };
|
34
|
+
C0D293B6135FD66F001979A0 /* FooAppDelegate_iPhone.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = FooAppDelegate_iPhone.m; path = iPhone/FooAppDelegate_iPhone.m; sourceTree = "<group>"; };
|
35
|
+
C0D293B9135FD66F001979A0 /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = iPhone/en.lproj/MainWindow_iPhone.xib; sourceTree = "<group>"; };
|
36
|
+
C0D293BC135FD66F001979A0 /* FooAppDelegate_iPad.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = FooAppDelegate_iPad.h; path = iPad/FooAppDelegate_iPad.h; sourceTree = "<group>"; };
|
37
|
+
C0D293BD135FD66F001979A0 /* FooAppDelegate_iPad.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = FooAppDelegate_iPad.m; path = iPad/FooAppDelegate_iPad.m; sourceTree = "<group>"; };
|
38
|
+
C0D293C0135FD66F001979A0 /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = iPad/en.lproj/MainWindow_iPad.xib; sourceTree = "<group>"; };
|
39
|
+
/* End PBXFileReference section */
|
40
|
+
|
41
|
+
/* Begin PBXFrameworksBuildPhase section */
|
42
|
+
C0D2939B135FD66E001979A0 /* Frameworks */ = {
|
43
|
+
isa = PBXFrameworksBuildPhase;
|
44
|
+
buildActionMask = 2147483647;
|
45
|
+
files = (
|
46
|
+
C0D293A3135FD66E001979A0 /* UIKit.framework in Frameworks */,
|
47
|
+
C0D293A5135FD66E001979A0 /* Foundation.framework in Frameworks */,
|
48
|
+
C0D293A7135FD66E001979A0 /* CoreGraphics.framework in Frameworks */,
|
49
|
+
);
|
50
|
+
runOnlyForDeploymentPostprocessing = 0;
|
51
|
+
};
|
52
|
+
/* End PBXFrameworksBuildPhase section */
|
53
|
+
|
54
|
+
/* Begin PBXGroup section */
|
55
|
+
C0D29393135FD66E001979A0 = {
|
56
|
+
isa = PBXGroup;
|
57
|
+
children = (
|
58
|
+
C0D293A8135FD66E001979A0 /* Foo */,
|
59
|
+
C0D293A1135FD66E001979A0 /* Frameworks */,
|
60
|
+
C0D2939F135FD66E001979A0 /* Products */,
|
61
|
+
);
|
62
|
+
sourceTree = "<group>";
|
63
|
+
};
|
64
|
+
C0D2939F135FD66E001979A0 /* Products */ = {
|
65
|
+
isa = PBXGroup;
|
66
|
+
children = (
|
67
|
+
C0D2939E135FD66E001979A0 /* Foo.app */,
|
68
|
+
);
|
69
|
+
name = Products;
|
70
|
+
sourceTree = "<group>";
|
71
|
+
};
|
72
|
+
C0D293A1135FD66E001979A0 /* Frameworks */ = {
|
73
|
+
isa = PBXGroup;
|
74
|
+
children = (
|
75
|
+
C0D293A2135FD66E001979A0 /* UIKit.framework */,
|
76
|
+
C0D293A4135FD66E001979A0 /* Foundation.framework */,
|
77
|
+
C0D293A6135FD66E001979A0 /* CoreGraphics.framework */,
|
78
|
+
);
|
79
|
+
name = Frameworks;
|
80
|
+
sourceTree = "<group>";
|
81
|
+
};
|
82
|
+
C0D293A8135FD66E001979A0 /* Foo */ = {
|
83
|
+
isa = PBXGroup;
|
84
|
+
children = (
|
85
|
+
C0D293B1135FD66E001979A0 /* FooAppDelegate.h */,
|
86
|
+
C0D293B2135FD66E001979A0 /* FooAppDelegate.m */,
|
87
|
+
C0D293B4135FD66F001979A0 /* iPhone */,
|
88
|
+
C0D293BB135FD66F001979A0 /* iPad */,
|
89
|
+
C0D293A9135FD66E001979A0 /* Supporting Files */,
|
90
|
+
);
|
91
|
+
path = Foo;
|
92
|
+
sourceTree = "<group>";
|
93
|
+
};
|
94
|
+
C0D293A9135FD66E001979A0 /* Supporting Files */ = {
|
95
|
+
isa = PBXGroup;
|
96
|
+
children = (
|
97
|
+
C0D293AA135FD66E001979A0 /* Foo-Info.plist */,
|
98
|
+
C0D293AB135FD66E001979A0 /* InfoPlist.strings */,
|
99
|
+
C0D293AE135FD66E001979A0 /* Foo-Prefix.pch */,
|
100
|
+
C0D293AF135FD66E001979A0 /* main.m */,
|
101
|
+
);
|
102
|
+
name = "Supporting Files";
|
103
|
+
sourceTree = "<group>";
|
104
|
+
};
|
105
|
+
C0D293B4135FD66F001979A0 /* iPhone */ = {
|
106
|
+
isa = PBXGroup;
|
107
|
+
children = (
|
108
|
+
C0D293B5135FD66F001979A0 /* FooAppDelegate_iPhone.h */,
|
109
|
+
C0D293B6135FD66F001979A0 /* FooAppDelegate_iPhone.m */,
|
110
|
+
C0D293B8135FD66F001979A0 /* MainWindow_iPhone.xib */,
|
111
|
+
);
|
112
|
+
name = iPhone;
|
113
|
+
sourceTree = "<group>";
|
114
|
+
};
|
115
|
+
C0D293BB135FD66F001979A0 /* iPad */ = {
|
116
|
+
isa = PBXGroup;
|
117
|
+
children = (
|
118
|
+
C0D293BC135FD66F001979A0 /* FooAppDelegate_iPad.h */,
|
119
|
+
C0D293BD135FD66F001979A0 /* FooAppDelegate_iPad.m */,
|
120
|
+
C0D293BF135FD66F001979A0 /* MainWindow_iPad.xib */,
|
121
|
+
);
|
122
|
+
name = iPad;
|
123
|
+
sourceTree = "<group>";
|
124
|
+
};
|
125
|
+
/* End PBXGroup section */
|
126
|
+
|
127
|
+
/* Begin PBXNativeTarget section */
|
128
|
+
C0D2939D135FD66E001979A0 /* Foo */ = {
|
129
|
+
isa = PBXNativeTarget;
|
130
|
+
buildConfigurationList = C0D293C4135FD66F001979A0 /* Build configuration list for PBXNativeTarget "Foo" */;
|
131
|
+
buildPhases = (
|
132
|
+
C0D293C7135FD6D7001979A0 /* ShellScript */,
|
133
|
+
C0D2939A135FD66E001979A0 /* Sources */,
|
134
|
+
C0D2939B135FD66E001979A0 /* Frameworks */,
|
135
|
+
C0D2939C135FD66E001979A0 /* Resources */,
|
136
|
+
);
|
137
|
+
buildRules = (
|
138
|
+
);
|
139
|
+
dependencies = (
|
140
|
+
);
|
141
|
+
name = Foo;
|
142
|
+
productName = Foo;
|
143
|
+
productReference = C0D2939E135FD66E001979A0 /* Foo.app */;
|
144
|
+
productType = "com.apple.product-type.application";
|
145
|
+
};
|
146
|
+
/* End PBXNativeTarget section */
|
147
|
+
|
148
|
+
/* Begin PBXProject section */
|
149
|
+
C0D29395135FD66E001979A0 /* Project object */ = {
|
150
|
+
isa = PBXProject;
|
151
|
+
attributes = {
|
152
|
+
ORGANIZATIONNAME = "Owl Forestry";
|
153
|
+
};
|
154
|
+
buildConfigurationList = C0D29398135FD66E001979A0 /* Build configuration list for PBXProject "Foo" */;
|
155
|
+
compatibilityVersion = "Xcode 3.2";
|
156
|
+
developmentRegion = English;
|
157
|
+
hasScannedForEncodings = 0;
|
158
|
+
knownRegions = (
|
159
|
+
en,
|
160
|
+
);
|
161
|
+
mainGroup = C0D29393135FD66E001979A0;
|
162
|
+
productRefGroup = C0D2939F135FD66E001979A0 /* Products */;
|
163
|
+
projectDirPath = "";
|
164
|
+
projectRoot = "";
|
165
|
+
targets = (
|
166
|
+
C0D2939D135FD66E001979A0 /* Foo */,
|
167
|
+
);
|
168
|
+
};
|
169
|
+
/* End PBXProject section */
|
170
|
+
|
171
|
+
/* Begin PBXResourcesBuildPhase section */
|
172
|
+
C0D2939C135FD66E001979A0 /* Resources */ = {
|
173
|
+
isa = PBXResourcesBuildPhase;
|
174
|
+
buildActionMask = 2147483647;
|
175
|
+
files = (
|
176
|
+
C0D293AD135FD66E001979A0 /* InfoPlist.strings in Resources */,
|
177
|
+
C0D293BA135FD66F001979A0 /* MainWindow_iPhone.xib in Resources */,
|
178
|
+
C0D293C1135FD66F001979A0 /* MainWindow_iPad.xib in Resources */,
|
179
|
+
);
|
180
|
+
runOnlyForDeploymentPostprocessing = 0;
|
181
|
+
};
|
182
|
+
/* End PBXResourcesBuildPhase section */
|
183
|
+
|
184
|
+
/* Begin PBXShellScriptBuildPhase section */
|
185
|
+
C0D293C7135FD6D7001979A0 /* ShellScript */ = {
|
186
|
+
isa = PBXShellScriptBuildPhase;
|
187
|
+
buildActionMask = 2147483647;
|
188
|
+
files = (
|
189
|
+
);
|
190
|
+
inputPaths = (
|
191
|
+
);
|
192
|
+
outputPaths = (
|
193
|
+
);
|
194
|
+
runOnlyForDeploymentPostprocessing = 0;
|
195
|
+
shellPath = /bin/sh;
|
196
|
+
shellScript = "rake build:prepare";
|
197
|
+
showEnvVarsInLog = 0;
|
198
|
+
};
|
199
|
+
/* End PBXShellScriptBuildPhase section */
|
200
|
+
|
201
|
+
/* Begin PBXSourcesBuildPhase section */
|
202
|
+
C0D2939A135FD66E001979A0 /* Sources */ = {
|
203
|
+
isa = PBXSourcesBuildPhase;
|
204
|
+
buildActionMask = 2147483647;
|
205
|
+
files = (
|
206
|
+
C0D293B0135FD66E001979A0 /* main.m in Sources */,
|
207
|
+
C0D293B3135FD66E001979A0 /* FooAppDelegate.m in Sources */,
|
208
|
+
C0D293B7135FD66F001979A0 /* FooAppDelegate_iPhone.m in Sources */,
|
209
|
+
C0D293BE135FD66F001979A0 /* FooAppDelegate_iPad.m in Sources */,
|
210
|
+
);
|
211
|
+
runOnlyForDeploymentPostprocessing = 0;
|
212
|
+
};
|
213
|
+
/* End PBXSourcesBuildPhase section */
|
214
|
+
|
215
|
+
/* Begin PBXVariantGroup section */
|
216
|
+
C0D293AB135FD66E001979A0 /* InfoPlist.strings */ = {
|
217
|
+
isa = PBXVariantGroup;
|
218
|
+
children = (
|
219
|
+
C0D293AC135FD66E001979A0 /* en */,
|
220
|
+
);
|
221
|
+
name = InfoPlist.strings;
|
222
|
+
sourceTree = "<group>";
|
223
|
+
};
|
224
|
+
C0D293B8135FD66F001979A0 /* MainWindow_iPhone.xib */ = {
|
225
|
+
isa = PBXVariantGroup;
|
226
|
+
children = (
|
227
|
+
C0D293B9135FD66F001979A0 /* en */,
|
228
|
+
);
|
229
|
+
name = MainWindow_iPhone.xib;
|
230
|
+
sourceTree = "<group>";
|
231
|
+
};
|
232
|
+
C0D293BF135FD66F001979A0 /* MainWindow_iPad.xib */ = {
|
233
|
+
isa = PBXVariantGroup;
|
234
|
+
children = (
|
235
|
+
C0D293C0135FD66F001979A0 /* en */,
|
236
|
+
);
|
237
|
+
name = MainWindow_iPad.xib;
|
238
|
+
sourceTree = "<group>";
|
239
|
+
};
|
240
|
+
/* End PBXVariantGroup section */
|
241
|
+
|
242
|
+
/* Begin XCBuildConfiguration section */
|
243
|
+
C0D293C2135FD66F001979A0 /* Debug */ = {
|
244
|
+
isa = XCBuildConfiguration;
|
245
|
+
buildSettings = {
|
246
|
+
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
|
247
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
248
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
249
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
250
|
+
GCC_PREPROCESSOR_DEFINITIONS = DEBUG;
|
251
|
+
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
252
|
+
GCC_VERSION = com.apple.compilers.llvmgcc42;
|
253
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
254
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
255
|
+
IPHONEOS_DEPLOYMENT_TARGET = 4.3;
|
256
|
+
LIBRARY_SEARCH_PATHS = (
|
257
|
+
"$(inherited)",
|
258
|
+
"\"$(SRCROOT)\"",
|
259
|
+
"\"$(SRCROOT)/iOS/Ads\"",
|
260
|
+
"\"$(SRCROOT)/iOS/Ads/Google AdMob\"",
|
261
|
+
"\"$(SRCROOT)/iOS/Ads/Greystripe\"",
|
262
|
+
"\"$(SRCROOT)/iOS/libs/FlurryLib\"",
|
263
|
+
"\"$(SRCROOT)/iOS/Ads/InMobi iOS SDK Bundle\"",
|
264
|
+
);
|
265
|
+
SDKROOT = iphoneos;
|
266
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
267
|
+
};
|
268
|
+
name = Debug;
|
269
|
+
};
|
270
|
+
C0D293C3135FD66F001979A0 /* Release */ = {
|
271
|
+
isa = XCBuildConfiguration;
|
272
|
+
buildSettings = {
|
273
|
+
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
|
274
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
275
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
276
|
+
GCC_VERSION = com.apple.compilers.llvmgcc42;
|
277
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
278
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
279
|
+
IPHONEOS_DEPLOYMENT_TARGET = 4.3;
|
280
|
+
OTHER_CFLAGS = "-DNS_BLOCK_ASSERTIONS=1";
|
281
|
+
SDKROOT = iphoneos;
|
282
|
+
TARGETED_DEVICE_FAMILY = "1,2";
|
283
|
+
};
|
284
|
+
name = Release;
|
285
|
+
};
|
286
|
+
C0D293C5135FD66F001979A0 /* Debug */ = {
|
287
|
+
isa = XCBuildConfiguration;
|
288
|
+
buildSettings = {
|
289
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
290
|
+
COPY_PHASE_STRIP = NO;
|
291
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
292
|
+
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
293
|
+
GCC_PREFIX_HEADER = "Foo/Foo-Prefix.pch";
|
294
|
+
INFOPLIST_FILE = "Foo/Foo-Info.plist";
|
295
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
296
|
+
WRAPPER_EXTENSION = app;
|
297
|
+
};
|
298
|
+
name = Debug;
|
299
|
+
};
|
300
|
+
C0D293C6135FD66F001979A0 /* Release */ = {
|
301
|
+
isa = XCBuildConfiguration;
|
302
|
+
buildSettings = {
|
303
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
304
|
+
COPY_PHASE_STRIP = YES;
|
305
|
+
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
306
|
+
GCC_PREFIX_HEADER = "Foo/Foo-Prefix.pch";
|
307
|
+
INFOPLIST_FILE = "Foo/Foo-Info.plist";
|
308
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
309
|
+
VALIDATE_PRODUCT = YES;
|
310
|
+
WRAPPER_EXTENSION = app;
|
311
|
+
};
|
312
|
+
name = Release;
|
313
|
+
};
|
314
|
+
/* End XCBuildConfiguration section */
|
315
|
+
|
316
|
+
/* Begin XCConfigurationList section */
|
317
|
+
C0D29398135FD66E001979A0 /* Build configuration list for PBXProject "Foo" */ = {
|
318
|
+
isa = XCConfigurationList;
|
319
|
+
buildConfigurations = (
|
320
|
+
C0D293C2135FD66F001979A0 /* Debug */,
|
321
|
+
C0D293C3135FD66F001979A0 /* Release */,
|
322
|
+
);
|
323
|
+
defaultConfigurationIsVisible = 0;
|
324
|
+
defaultConfigurationName = Release;
|
325
|
+
};
|
326
|
+
C0D293C4135FD66F001979A0 /* Build configuration list for PBXNativeTarget "Foo" */ = {
|
327
|
+
isa = XCConfigurationList;
|
328
|
+
buildConfigurations = (
|
329
|
+
C0D293C5135FD66F001979A0 /* Debug */,
|
330
|
+
C0D293C6135FD66F001979A0 /* Release */,
|
331
|
+
);
|
332
|
+
defaultConfigurationIsVisible = 0;
|
333
|
+
};
|
334
|
+
/* End XCConfigurationList section */
|
335
|
+
};
|
336
|
+
rootObject = C0D29395135FD66E001979A0 /* Project object */;
|
337
|
+
}
|