XCBuildFaster 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +22 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +15 -0
- data/Rakefile +10 -0
- data/bin/xcbuildfaster +25 -0
- data/fixtures/FixtureProject/FixtureProject.xcodeproj/project.pbxproj +420 -0
- data/fixtures/FixtureProject/FixtureProject.xcodeproj/xcuserdata/dschukin.xcuserdatad/xcschemes/FixtureProject.xcscheme +110 -0
- data/fixtures/FixtureProject/FixtureProject.xcodeproj/xcuserdata/dschukin.xcuserdatad/xcschemes/xcschememanagement.plist +27 -0
- data/fixtures/FixtureProject/FixtureProject/AppDelegate.swift +46 -0
- data/fixtures/FixtureProject/FixtureProject/Base.lproj/LaunchScreen.xib +41 -0
- data/fixtures/FixtureProject/FixtureProject/Base.lproj/Main.storyboard +25 -0
- data/fixtures/FixtureProject/FixtureProject/Images.xcassets/AppIcon.appiconset/Contents.json +38 -0
- data/fixtures/FixtureProject/FixtureProject/Info.plist +40 -0
- data/fixtures/FixtureProject/FixtureProject/ViewController.swift +25 -0
- data/fixtures/FixtureProject/FixtureProjectTests/FixtureProjectTests.swift +36 -0
- data/fixtures/FixtureProject/FixtureProjectTests/Info.plist +24 -0
- data/lib/ext/xcodeproj.rb +15 -0
- data/lib/xcbuildfaster.rb +2 -0
- data/lib/xcbuildfaster/project_modifier.rb +84 -0
- data/lib/xcbuildfaster/version.rb +3 -0
- data/spec/spec_helper.rb +1 -0
- data/spec/xcbuildfaster_spec.rb +16 -0
- data/xcbuildfaster.gemspec +34 -0
- metadata +225 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: e3ddb9cc4e15ac6853e576fa0fa6d87f21525242
|
4
|
+
data.tar.gz: 12619d9d703f20034c666162040d415ed0ca5610
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: c9b99824ba91343396bd69732da64690a2f578bd00ff24e32b2a49786f43db1ddba8136689a77831bdefab4c582f346a548d01d6ce2d435575e9fb4b958f4eed
|
7
|
+
data.tar.gz: 5a731b48f4aac14372595c920c47f44590e2ca365effc0c76fdc400f897376682e2de09b04d30f89a1d9c978f5e9e995190843e7411483178b596038ede52f77
|
data/.gitignore
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
*.gem
|
2
|
+
*.rbc
|
3
|
+
.bundle
|
4
|
+
.config
|
5
|
+
.yardoc
|
6
|
+
Gemfile.lock
|
7
|
+
InstalledFiles
|
8
|
+
_yardoc
|
9
|
+
coverage
|
10
|
+
doc/
|
11
|
+
lib/bundler/man
|
12
|
+
pkg
|
13
|
+
rdoc
|
14
|
+
spec/reports
|
15
|
+
test/tmp
|
16
|
+
test/version_tmp
|
17
|
+
tmp
|
18
|
+
*.bundle
|
19
|
+
*.so
|
20
|
+
*.o
|
21
|
+
*.a
|
22
|
+
mkmf.log
|
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2014 Dave Schukin
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
# XCBuildFaster
|
2
|
+
|
3
|
+
Tweaks your Xcode project / subprojects for faster compilation times.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
gem install xcbuildfaster
|
8
|
+
|
9
|
+
## Usage
|
10
|
+
|
11
|
+
xcbuildfaster MyProject.xcodeproj
|
12
|
+
|
13
|
+
If you want to ignore certain subprojects, use the `--ignore` flag with the respective project names.
|
14
|
+
|
15
|
+
xcbuildfaster MyProject.xcodeproj --ignore FooBarSubProject
|
data/Rakefile
ADDED
@@ -0,0 +1,10 @@
|
|
1
|
+
require 'rspec/core/rake_task'
|
2
|
+
require 'bundler/gem_tasks'
|
3
|
+
|
4
|
+
# Default directory to look in is `/specs`
|
5
|
+
# Run with `rake spec`
|
6
|
+
RSpec::Core::RakeTask.new(:spec) do |task|
|
7
|
+
task.rspec_opts = '--color' # ['--color', '--format', 'nested']
|
8
|
+
end
|
9
|
+
|
10
|
+
task :default => :spec
|
data/bin/xcbuildfaster
ADDED
@@ -0,0 +1,25 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
|
3
|
+
require 'xcbuildfaster'
|
4
|
+
require 'optparse'
|
5
|
+
|
6
|
+
ignore_subprojects = []
|
7
|
+
|
8
|
+
option_parser = OptionParser.new do |opts|
|
9
|
+
opts.banner = "Usage: xcbuildfaster <Xcode Project Path> [options]"
|
10
|
+
opts.on('-i', '--ignore <Subproject Name>', 'Ignore subproject') do |subproject_name|
|
11
|
+
ignore_subprojects << subproject_name
|
12
|
+
end
|
13
|
+
end
|
14
|
+
|
15
|
+
option_parser.parse!
|
16
|
+
|
17
|
+
if ARGV.empty?
|
18
|
+
puts option_parser
|
19
|
+
exit(-1)
|
20
|
+
end
|
21
|
+
|
22
|
+
root_project_path = ARGV.pop
|
23
|
+
|
24
|
+
project_modifier = XCBuildFaster::ProjectModifier.new(root_project_path, ignore_subprojects)
|
25
|
+
project_modifier.go!
|
@@ -0,0 +1,420 @@
|
|
1
|
+
// !$*UTF8*$!
|
2
|
+
{
|
3
|
+
archiveVersion = 1;
|
4
|
+
classes = {
|
5
|
+
};
|
6
|
+
objectVersion = 46;
|
7
|
+
objects = {
|
8
|
+
|
9
|
+
/* Begin PBXBuildFile section */
|
10
|
+
F5D5AAB61A30F3240070C8BF /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = F5D5AAB51A30F3240070C8BF /* AppDelegate.swift */; };
|
11
|
+
F5D5AAB81A30F3240070C8BF /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = F5D5AAB71A30F3240070C8BF /* ViewController.swift */; };
|
12
|
+
F5D5AABB1A30F3240070C8BF /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = F5D5AAB91A30F3240070C8BF /* Main.storyboard */; };
|
13
|
+
F5D5AABD1A30F3240070C8BF /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = F5D5AABC1A30F3240070C8BF /* Images.xcassets */; };
|
14
|
+
F5D5AAC01A30F3240070C8BF /* LaunchScreen.xib in Resources */ = {isa = PBXBuildFile; fileRef = F5D5AABE1A30F3240070C8BF /* LaunchScreen.xib */; };
|
15
|
+
F5D5AACC1A30F3240070C8BF /* FixtureProjectTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = F5D5AACB1A30F3240070C8BF /* FixtureProjectTests.swift */; };
|
16
|
+
/* End PBXBuildFile section */
|
17
|
+
|
18
|
+
/* Begin PBXContainerItemProxy section */
|
19
|
+
F5D5AAC61A30F3240070C8BF /* PBXContainerItemProxy */ = {
|
20
|
+
isa = PBXContainerItemProxy;
|
21
|
+
containerPortal = F5D5AAA81A30F3240070C8BF /* Project object */;
|
22
|
+
proxyType = 1;
|
23
|
+
remoteGlobalIDString = F5D5AAAF1A30F3240070C8BF;
|
24
|
+
remoteInfo = FixtureProject;
|
25
|
+
};
|
26
|
+
/* End PBXContainerItemProxy section */
|
27
|
+
|
28
|
+
/* Begin PBXFileReference section */
|
29
|
+
F5D5AAB01A30F3240070C8BF /* FixtureProject.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = FixtureProject.app; sourceTree = BUILT_PRODUCTS_DIR; };
|
30
|
+
F5D5AAB41A30F3240070C8BF /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
31
|
+
F5D5AAB51A30F3240070C8BF /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
|
32
|
+
F5D5AAB71A30F3240070C8BF /* ViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = "<group>"; };
|
33
|
+
F5D5AABA1A30F3240070C8BF /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
|
34
|
+
F5D5AABC1A30F3240070C8BF /* Images.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Images.xcassets; sourceTree = "<group>"; };
|
35
|
+
F5D5AABF1A30F3240070C8BF /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = Base; path = Base.lproj/LaunchScreen.xib; sourceTree = "<group>"; };
|
36
|
+
F5D5AAC51A30F3240070C8BF /* FixtureProjectTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = FixtureProjectTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
|
37
|
+
F5D5AACA1A30F3240070C8BF /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
|
38
|
+
F5D5AACB1A30F3240070C8BF /* FixtureProjectTests.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = FixtureProjectTests.swift; sourceTree = "<group>"; };
|
39
|
+
/* End PBXFileReference section */
|
40
|
+
|
41
|
+
/* Begin PBXFrameworksBuildPhase section */
|
42
|
+
F5D5AAAD1A30F3240070C8BF /* Frameworks */ = {
|
43
|
+
isa = PBXFrameworksBuildPhase;
|
44
|
+
buildActionMask = 2147483647;
|
45
|
+
files = (
|
46
|
+
);
|
47
|
+
runOnlyForDeploymentPostprocessing = 0;
|
48
|
+
};
|
49
|
+
F5D5AAC21A30F3240070C8BF /* Frameworks */ = {
|
50
|
+
isa = PBXFrameworksBuildPhase;
|
51
|
+
buildActionMask = 2147483647;
|
52
|
+
files = (
|
53
|
+
);
|
54
|
+
runOnlyForDeploymentPostprocessing = 0;
|
55
|
+
};
|
56
|
+
/* End PBXFrameworksBuildPhase section */
|
57
|
+
|
58
|
+
/* Begin PBXGroup section */
|
59
|
+
F5D5AAA71A30F3240070C8BF = {
|
60
|
+
isa = PBXGroup;
|
61
|
+
children = (
|
62
|
+
F5D5AAB21A30F3240070C8BF /* FixtureProject */,
|
63
|
+
F5D5AAC81A30F3240070C8BF /* FixtureProjectTests */,
|
64
|
+
F5D5AAB11A30F3240070C8BF /* Products */,
|
65
|
+
);
|
66
|
+
sourceTree = "<group>";
|
67
|
+
};
|
68
|
+
F5D5AAB11A30F3240070C8BF /* Products */ = {
|
69
|
+
isa = PBXGroup;
|
70
|
+
children = (
|
71
|
+
F5D5AAB01A30F3240070C8BF /* FixtureProject.app */,
|
72
|
+
F5D5AAC51A30F3240070C8BF /* FixtureProjectTests.xctest */,
|
73
|
+
);
|
74
|
+
name = Products;
|
75
|
+
sourceTree = "<group>";
|
76
|
+
};
|
77
|
+
F5D5AAB21A30F3240070C8BF /* FixtureProject */ = {
|
78
|
+
isa = PBXGroup;
|
79
|
+
children = (
|
80
|
+
F5D5AAB51A30F3240070C8BF /* AppDelegate.swift */,
|
81
|
+
F5D5AAB71A30F3240070C8BF /* ViewController.swift */,
|
82
|
+
F5D5AAB91A30F3240070C8BF /* Main.storyboard */,
|
83
|
+
F5D5AABC1A30F3240070C8BF /* Images.xcassets */,
|
84
|
+
F5D5AABE1A30F3240070C8BF /* LaunchScreen.xib */,
|
85
|
+
F5D5AAB31A30F3240070C8BF /* Supporting Files */,
|
86
|
+
);
|
87
|
+
path = FixtureProject;
|
88
|
+
sourceTree = "<group>";
|
89
|
+
};
|
90
|
+
F5D5AAB31A30F3240070C8BF /* Supporting Files */ = {
|
91
|
+
isa = PBXGroup;
|
92
|
+
children = (
|
93
|
+
F5D5AAB41A30F3240070C8BF /* Info.plist */,
|
94
|
+
);
|
95
|
+
name = "Supporting Files";
|
96
|
+
sourceTree = "<group>";
|
97
|
+
};
|
98
|
+
F5D5AAC81A30F3240070C8BF /* FixtureProjectTests */ = {
|
99
|
+
isa = PBXGroup;
|
100
|
+
children = (
|
101
|
+
F5D5AACB1A30F3240070C8BF /* FixtureProjectTests.swift */,
|
102
|
+
F5D5AAC91A30F3240070C8BF /* Supporting Files */,
|
103
|
+
);
|
104
|
+
path = FixtureProjectTests;
|
105
|
+
sourceTree = "<group>";
|
106
|
+
};
|
107
|
+
F5D5AAC91A30F3240070C8BF /* Supporting Files */ = {
|
108
|
+
isa = PBXGroup;
|
109
|
+
children = (
|
110
|
+
F5D5AACA1A30F3240070C8BF /* Info.plist */,
|
111
|
+
);
|
112
|
+
name = "Supporting Files";
|
113
|
+
sourceTree = "<group>";
|
114
|
+
};
|
115
|
+
/* End PBXGroup section */
|
116
|
+
|
117
|
+
/* Begin PBXNativeTarget section */
|
118
|
+
F5D5AAAF1A30F3240070C8BF /* FixtureProject */ = {
|
119
|
+
isa = PBXNativeTarget;
|
120
|
+
buildConfigurationList = F5D5AACF1A30F3240070C8BF /* Build configuration list for PBXNativeTarget "FixtureProject" */;
|
121
|
+
buildPhases = (
|
122
|
+
F5D5AAAC1A30F3240070C8BF /* Sources */,
|
123
|
+
F5D5AAAD1A30F3240070C8BF /* Frameworks */,
|
124
|
+
F5D5AAAE1A30F3240070C8BF /* Resources */,
|
125
|
+
);
|
126
|
+
buildRules = (
|
127
|
+
);
|
128
|
+
dependencies = (
|
129
|
+
);
|
130
|
+
name = FixtureProject;
|
131
|
+
productName = FixtureProject;
|
132
|
+
productReference = F5D5AAB01A30F3240070C8BF /* FixtureProject.app */;
|
133
|
+
productType = "com.apple.product-type.application";
|
134
|
+
};
|
135
|
+
F5D5AAC41A30F3240070C8BF /* FixtureProjectTests */ = {
|
136
|
+
isa = PBXNativeTarget;
|
137
|
+
buildConfigurationList = F5D5AAD21A30F3240070C8BF /* Build configuration list for PBXNativeTarget "FixtureProjectTests" */;
|
138
|
+
buildPhases = (
|
139
|
+
F5D5AAC11A30F3240070C8BF /* Sources */,
|
140
|
+
F5D5AAC21A30F3240070C8BF /* Frameworks */,
|
141
|
+
F5D5AAC31A30F3240070C8BF /* Resources */,
|
142
|
+
);
|
143
|
+
buildRules = (
|
144
|
+
);
|
145
|
+
dependencies = (
|
146
|
+
F5D5AAC71A30F3240070C8BF /* PBXTargetDependency */,
|
147
|
+
);
|
148
|
+
name = FixtureProjectTests;
|
149
|
+
productName = FixtureProjectTests;
|
150
|
+
productReference = F5D5AAC51A30F3240070C8BF /* FixtureProjectTests.xctest */;
|
151
|
+
productType = "com.apple.product-type.bundle.unit-test";
|
152
|
+
};
|
153
|
+
/* End PBXNativeTarget section */
|
154
|
+
|
155
|
+
/* Begin PBXProject section */
|
156
|
+
F5D5AAA81A30F3240070C8BF /* Project object */ = {
|
157
|
+
isa = PBXProject;
|
158
|
+
attributes = {
|
159
|
+
LastUpgradeCheck = 0610;
|
160
|
+
ORGANIZATIONNAME = "Dave Schukin";
|
161
|
+
TargetAttributes = {
|
162
|
+
F5D5AAAF1A30F3240070C8BF = {
|
163
|
+
CreatedOnToolsVersion = 6.1;
|
164
|
+
};
|
165
|
+
F5D5AAC41A30F3240070C8BF = {
|
166
|
+
CreatedOnToolsVersion = 6.1;
|
167
|
+
TestTargetID = F5D5AAAF1A30F3240070C8BF;
|
168
|
+
};
|
169
|
+
};
|
170
|
+
};
|
171
|
+
buildConfigurationList = F5D5AAAB1A30F3240070C8BF /* Build configuration list for PBXProject "FixtureProject" */;
|
172
|
+
compatibilityVersion = "Xcode 3.2";
|
173
|
+
developmentRegion = English;
|
174
|
+
hasScannedForEncodings = 0;
|
175
|
+
knownRegions = (
|
176
|
+
en,
|
177
|
+
Base,
|
178
|
+
);
|
179
|
+
mainGroup = F5D5AAA71A30F3240070C8BF;
|
180
|
+
productRefGroup = F5D5AAB11A30F3240070C8BF /* Products */;
|
181
|
+
projectDirPath = "";
|
182
|
+
projectRoot = "";
|
183
|
+
targets = (
|
184
|
+
F5D5AAAF1A30F3240070C8BF /* FixtureProject */,
|
185
|
+
F5D5AAC41A30F3240070C8BF /* FixtureProjectTests */,
|
186
|
+
);
|
187
|
+
};
|
188
|
+
/* End PBXProject section */
|
189
|
+
|
190
|
+
/* Begin PBXResourcesBuildPhase section */
|
191
|
+
F5D5AAAE1A30F3240070C8BF /* Resources */ = {
|
192
|
+
isa = PBXResourcesBuildPhase;
|
193
|
+
buildActionMask = 2147483647;
|
194
|
+
files = (
|
195
|
+
F5D5AABB1A30F3240070C8BF /* Main.storyboard in Resources */,
|
196
|
+
F5D5AAC01A30F3240070C8BF /* LaunchScreen.xib in Resources */,
|
197
|
+
F5D5AABD1A30F3240070C8BF /* Images.xcassets in Resources */,
|
198
|
+
);
|
199
|
+
runOnlyForDeploymentPostprocessing = 0;
|
200
|
+
};
|
201
|
+
F5D5AAC31A30F3240070C8BF /* Resources */ = {
|
202
|
+
isa = PBXResourcesBuildPhase;
|
203
|
+
buildActionMask = 2147483647;
|
204
|
+
files = (
|
205
|
+
);
|
206
|
+
runOnlyForDeploymentPostprocessing = 0;
|
207
|
+
};
|
208
|
+
/* End PBXResourcesBuildPhase section */
|
209
|
+
|
210
|
+
/* Begin PBXSourcesBuildPhase section */
|
211
|
+
F5D5AAAC1A30F3240070C8BF /* Sources */ = {
|
212
|
+
isa = PBXSourcesBuildPhase;
|
213
|
+
buildActionMask = 2147483647;
|
214
|
+
files = (
|
215
|
+
F5D5AAB81A30F3240070C8BF /* ViewController.swift in Sources */,
|
216
|
+
F5D5AAB61A30F3240070C8BF /* AppDelegate.swift in Sources */,
|
217
|
+
);
|
218
|
+
runOnlyForDeploymentPostprocessing = 0;
|
219
|
+
};
|
220
|
+
F5D5AAC11A30F3240070C8BF /* Sources */ = {
|
221
|
+
isa = PBXSourcesBuildPhase;
|
222
|
+
buildActionMask = 2147483647;
|
223
|
+
files = (
|
224
|
+
F5D5AACC1A30F3240070C8BF /* FixtureProjectTests.swift in Sources */,
|
225
|
+
);
|
226
|
+
runOnlyForDeploymentPostprocessing = 0;
|
227
|
+
};
|
228
|
+
/* End PBXSourcesBuildPhase section */
|
229
|
+
|
230
|
+
/* Begin PBXTargetDependency section */
|
231
|
+
F5D5AAC71A30F3240070C8BF /* PBXTargetDependency */ = {
|
232
|
+
isa = PBXTargetDependency;
|
233
|
+
target = F5D5AAAF1A30F3240070C8BF /* FixtureProject */;
|
234
|
+
targetProxy = F5D5AAC61A30F3240070C8BF /* PBXContainerItemProxy */;
|
235
|
+
};
|
236
|
+
/* End PBXTargetDependency section */
|
237
|
+
|
238
|
+
/* Begin PBXVariantGroup section */
|
239
|
+
F5D5AAB91A30F3240070C8BF /* Main.storyboard */ = {
|
240
|
+
isa = PBXVariantGroup;
|
241
|
+
children = (
|
242
|
+
F5D5AABA1A30F3240070C8BF /* Base */,
|
243
|
+
);
|
244
|
+
name = Main.storyboard;
|
245
|
+
sourceTree = "<group>";
|
246
|
+
};
|
247
|
+
F5D5AABE1A30F3240070C8BF /* LaunchScreen.xib */ = {
|
248
|
+
isa = PBXVariantGroup;
|
249
|
+
children = (
|
250
|
+
F5D5AABF1A30F3240070C8BF /* Base */,
|
251
|
+
);
|
252
|
+
name = LaunchScreen.xib;
|
253
|
+
sourceTree = "<group>";
|
254
|
+
};
|
255
|
+
/* End PBXVariantGroup section */
|
256
|
+
|
257
|
+
/* Begin XCBuildConfiguration section */
|
258
|
+
F5D5AACD1A30F3240070C8BF /* Debug */ = {
|
259
|
+
isa = XCBuildConfiguration;
|
260
|
+
buildSettings = {
|
261
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
262
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
263
|
+
CLANG_CXX_LIBRARY = "libc++";
|
264
|
+
CLANG_ENABLE_MODULES = YES;
|
265
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
266
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
267
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
268
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
269
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
270
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
271
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
272
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
273
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
274
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
275
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
276
|
+
COPY_PHASE_STRIP = NO;
|
277
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
278
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
279
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
280
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
281
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
282
|
+
"DEBUG=1",
|
283
|
+
"$(inherited)",
|
284
|
+
);
|
285
|
+
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
286
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
287
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
288
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
289
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
290
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
291
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
292
|
+
IPHONEOS_DEPLOYMENT_TARGET = 8.1;
|
293
|
+
MTL_ENABLE_DEBUG_INFO = YES;
|
294
|
+
ONLY_ACTIVE_ARCH = YES;
|
295
|
+
SDKROOT = iphoneos;
|
296
|
+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
|
297
|
+
};
|
298
|
+
name = Debug;
|
299
|
+
};
|
300
|
+
F5D5AACE1A30F3240070C8BF /* Release */ = {
|
301
|
+
isa = XCBuildConfiguration;
|
302
|
+
buildSettings = {
|
303
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
304
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
305
|
+
CLANG_CXX_LIBRARY = "libc++";
|
306
|
+
CLANG_ENABLE_MODULES = YES;
|
307
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
308
|
+
CLANG_WARN_BOOL_CONVERSION = YES;
|
309
|
+
CLANG_WARN_CONSTANT_CONVERSION = YES;
|
310
|
+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
|
311
|
+
CLANG_WARN_EMPTY_BODY = YES;
|
312
|
+
CLANG_WARN_ENUM_CONVERSION = YES;
|
313
|
+
CLANG_WARN_INT_CONVERSION = YES;
|
314
|
+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
|
315
|
+
CLANG_WARN_UNREACHABLE_CODE = YES;
|
316
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
317
|
+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
|
318
|
+
COPY_PHASE_STRIP = YES;
|
319
|
+
ENABLE_NS_ASSERTIONS = NO;
|
320
|
+
ENABLE_STRICT_OBJC_MSGSEND = YES;
|
321
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
322
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
323
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
|
324
|
+
GCC_WARN_UNDECLARED_SELECTOR = YES;
|
325
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
|
326
|
+
GCC_WARN_UNUSED_FUNCTION = YES;
|
327
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
328
|
+
IPHONEOS_DEPLOYMENT_TARGET = 8.1;
|
329
|
+
MTL_ENABLE_DEBUG_INFO = NO;
|
330
|
+
SDKROOT = iphoneos;
|
331
|
+
VALIDATE_PRODUCT = YES;
|
332
|
+
};
|
333
|
+
name = Release;
|
334
|
+
};
|
335
|
+
F5D5AAD01A30F3240070C8BF /* Debug */ = {
|
336
|
+
isa = XCBuildConfiguration;
|
337
|
+
buildSettings = {
|
338
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
339
|
+
INFOPLIST_FILE = FixtureProject/Info.plist;
|
340
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
|
341
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
342
|
+
};
|
343
|
+
name = Debug;
|
344
|
+
};
|
345
|
+
F5D5AAD11A30F3240070C8BF /* Release */ = {
|
346
|
+
isa = XCBuildConfiguration;
|
347
|
+
buildSettings = {
|
348
|
+
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
|
349
|
+
INFOPLIST_FILE = FixtureProject/Info.plist;
|
350
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
|
351
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
352
|
+
};
|
353
|
+
name = Release;
|
354
|
+
};
|
355
|
+
F5D5AAD31A30F3240070C8BF /* Debug */ = {
|
356
|
+
isa = XCBuildConfiguration;
|
357
|
+
buildSettings = {
|
358
|
+
BUNDLE_LOADER = "$(TEST_HOST)";
|
359
|
+
FRAMEWORK_SEARCH_PATHS = (
|
360
|
+
"$(SDKROOT)/Developer/Library/Frameworks",
|
361
|
+
"$(inherited)",
|
362
|
+
);
|
363
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
364
|
+
"DEBUG=1",
|
365
|
+
"$(inherited)",
|
366
|
+
);
|
367
|
+
INFOPLIST_FILE = FixtureProjectTests/Info.plist;
|
368
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
369
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
370
|
+
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/FixtureProject.app/FixtureProject";
|
371
|
+
};
|
372
|
+
name = Debug;
|
373
|
+
};
|
374
|
+
F5D5AAD41A30F3240070C8BF /* Release */ = {
|
375
|
+
isa = XCBuildConfiguration;
|
376
|
+
buildSettings = {
|
377
|
+
BUNDLE_LOADER = "$(TEST_HOST)";
|
378
|
+
FRAMEWORK_SEARCH_PATHS = (
|
379
|
+
"$(SDKROOT)/Developer/Library/Frameworks",
|
380
|
+
"$(inherited)",
|
381
|
+
);
|
382
|
+
INFOPLIST_FILE = FixtureProjectTests/Info.plist;
|
383
|
+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
|
384
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
385
|
+
TEST_HOST = "$(BUILT_PRODUCTS_DIR)/FixtureProject.app/FixtureProject";
|
386
|
+
};
|
387
|
+
name = Release;
|
388
|
+
};
|
389
|
+
/* End XCBuildConfiguration section */
|
390
|
+
|
391
|
+
/* Begin XCConfigurationList section */
|
392
|
+
F5D5AAAB1A30F3240070C8BF /* Build configuration list for PBXProject "FixtureProject" */ = {
|
393
|
+
isa = XCConfigurationList;
|
394
|
+
buildConfigurations = (
|
395
|
+
F5D5AACD1A30F3240070C8BF /* Debug */,
|
396
|
+
F5D5AACE1A30F3240070C8BF /* Release */,
|
397
|
+
);
|
398
|
+
defaultConfigurationIsVisible = 0;
|
399
|
+
defaultConfigurationName = Release;
|
400
|
+
};
|
401
|
+
F5D5AACF1A30F3240070C8BF /* Build configuration list for PBXNativeTarget "FixtureProject" */ = {
|
402
|
+
isa = XCConfigurationList;
|
403
|
+
buildConfigurations = (
|
404
|
+
F5D5AAD01A30F3240070C8BF /* Debug */,
|
405
|
+
F5D5AAD11A30F3240070C8BF /* Release */,
|
406
|
+
);
|
407
|
+
defaultConfigurationIsVisible = 0;
|
408
|
+
};
|
409
|
+
F5D5AAD21A30F3240070C8BF /* Build configuration list for PBXNativeTarget "FixtureProjectTests" */ = {
|
410
|
+
isa = XCConfigurationList;
|
411
|
+
buildConfigurations = (
|
412
|
+
F5D5AAD31A30F3240070C8BF /* Debug */,
|
413
|
+
F5D5AAD41A30F3240070C8BF /* Release */,
|
414
|
+
);
|
415
|
+
defaultConfigurationIsVisible = 0;
|
416
|
+
};
|
417
|
+
/* End XCConfigurationList section */
|
418
|
+
};
|
419
|
+
rootObject = F5D5AAA81A30F3240070C8BF /* Project object */;
|
420
|
+
}
|