xcake 0.8.3 → 0.8.6

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.
Files changed (39) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +8 -0
  3. data/lib/xcake/version.rb +1 -1
  4. data/xcake.gemspec +1 -1
  5. metadata +1 -35
  6. data/docs/Cakefile.md +0 -509
  7. data/docs/Getting Started.md +0 -65
  8. data/docs/Hooks.md +0 -14
  9. data/docs/Xcode Project Support.md +0 -51
  10. data/example/app/CakeMania/CakeMania.xcodeproj/project.pbxproj +0 -973
  11. data/example/app/CakeMania/CakeMania.xcodeproj/project.xcworkspace/contents.xcworkspacedata +0 -7
  12. data/example/app/CakeMania/CakeMania.xcodeproj/project.xcworkspace/xcuserdata/maxim.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
  13. data/example/app/CakeMania/CakeMania.xcodeproj/xcshareddata/xcschemes/CakeMania-AppStore.xcscheme +0 -91
  14. data/example/app/CakeMania/CakeMania.xcodeproj/xcshareddata/xcschemes/CakeMania-Debug.xcscheme +0 -91
  15. data/example/app/CakeMania/CakeMania.xcodeproj/xcshareddata/xcschemes/CakeMania-Production.xcscheme +0 -91
  16. data/example/app/CakeMania/CakeMania.xcodeproj/xcshareddata/xcschemes/CakeMania-RC.xcscheme +0 -91
  17. data/example/app/CakeMania/CakeMania.xcodeproj/xcshareddata/xcschemes/CakeMania-Staging.xcscheme +0 -91
  18. data/example/app/CakeMania/CakeMania.xcodeproj/xcuserdata/maxim.xcuserdatad/xcschemes/CakeManiaTst.xcscheme +0 -56
  19. data/example/app/CakeMania/CakeMania.xcodeproj/xcuserdata/maxim.xcuserdatad/xcschemes/CakeManiaUITst.xcscheme +0 -56
  20. data/example/app/CakeMania/CakeMania.xcodeproj/xcuserdata/maxim.xcuserdatad/xcschemes/xcschememanagement.plist +0 -72
  21. data/example/app/CakeMania/Cakefile +0 -398
  22. data/example/app/CakeMania/Info/CakeMania.plist +0 -38
  23. data/example/app/CakeMania/Info/CakeManiaTst.plist +0 -22
  24. data/example/app/CakeMania/Info/CakeManiaUITst.plist +0 -22
  25. data/example/app/CakeMania/Res/CakeMania-test.entitlements +0 -10
  26. data/example/app/CakeMania/Res/CakeMania.entitlements +0 -10
  27. data/example/app/CakeMania/Res/CakeMania.xcassets/AppIcon.appiconset/Contents.json +0 -48
  28. data/example/app/CakeMania/Src/AppDelegate.swift +0 -46
  29. data/example/app/CakeMania/Src/Base.lproj/LaunchScreen.storyboard +0 -27
  30. data/example/app/CakeMania/Src/Base.lproj/Main.storyboard +0 -26
  31. data/example/app/CakeMania/Src/ObjC/CakeMania-Bridging-Header.h +0 -3
  32. data/example/app/CakeMania/Src/ObjC/Prefix.pch +0 -14
  33. data/example/app/CakeMania/Src/ViewController.swift +0 -25
  34. data/example/app/CakeMania/Tst/Main.swift +0 -36
  35. data/example/app/CakeMania/UITst/Main.swift +0 -36
  36. data/example/framework/Cakefile +0 -133
  37. data/gemfiles/Gemfile.xcodeproj-1.3.x +0 -5
  38. data/gemfiles/Gemfile.xcodeproj-1.4.x +0 -5
  39. data/gemfiles/Gemfile.xcodeproj-edge +0 -5
@@ -1,65 +0,0 @@
1
- #Getting Started
2
-
3
- Xcake allows you to describe a Xcode project via an easy to use DSL, We do this
4
- by creating a simple text file, our `Cakefile`. This tutorial will show you how
5
- to create your first project. This guide assumes you have a basic knowllege of
6
- xcode.
7
-
8
- Our first step is to create the folder for our project and a blank file for our `Cakefile`,
9
- so we're going to need some command line magic:
10
-
11
- - Firstly run `mkdir MyProject` to create the folder for our project
12
- - Next we will need a blank textfile, so lets run `touch Cakefile` to create it
13
-
14
- So we should have a folder called "MyProject" with a textfile named "Cakefile" inside of it,
15
- Xcake will look for this textfile, so make sure to keep it's name the same.
16
-
17
- Now, If we run `xcake make` we should now have our xcode project. *phew* that was easy! If we open it however it's not quite ready to use, it's still lacking any targets to actually build.
18
- So let's fix that :)
19
-
20
- We're going to create an app for iOS 9.0 called `MyApp`, hopefully the syntax should be easy to grasp:
21
-
22
- ```ruby
23
- application_for :ios, 9.0 do |target|
24
- target.name = "MyApp"
25
- end
26
- ```
27
-
28
- Now if we run `xcake make` again, we get the same project file but now with a target. In addition to this
29
- xcake has created a `debug` and `release` build configuration as well as two schemes for our target
30
- and these build configurations.
31
-
32
- For some situations you may want to provide your own build configurations, for example adding a
33
- staging build configuration. So now we will specify our own `staging` configuration, this configuration will be used for internal testing so we will specify that it should
34
- be a `debug` configuration so that the default build settings are optimised for testing.
35
-
36
- So lets add it, configurations are defined project-wide so we do it like this:
37
-
38
- ```ruby
39
- debug_configuration :staging
40
-
41
- application_for :ios, 9.0 do |target|
42
- target.name = "MyApp"
43
- end
44
- ```
45
-
46
- Again we run `xcake make` and voilla! Pretty easy but now if we open up our project
47
- our `debug` and `release` configurations are gone. Xcake operates an opt-out system, Xcode projects won't open
48
- without any configurations so Xcake provides these configurations as a sensible default. But as soon as we
49
- provide our own configurations we are opting out of these defaults.
50
-
51
- Xcake does this to force us to make sure we have everything setup as we need it, to get these configurations back
52
- its just an extra couple of lines:
53
-
54
- ```ruby
55
- debug_configuration :staging
56
- debug_configuration :debug
57
- release_configuration :release
58
-
59
- application_for :ios, 9.0 do |target|
60
- target.name = "MyApp"
61
- end
62
- ```
63
-
64
- And there you have it, that is your first project created by Xcake. To learn what else you can do, read the
65
- [Cakefile syntax reference](Cakefile.md).
@@ -1,14 +0,0 @@
1
- #Hooks
2
-
3
- Xcake allows you to run actions for certain events using Hooks. At the moment
4
- there is only one hook supported "after_save" which is called after a project is
5
- saved to disk. Here is an example where we run CocoaPods once a project has been
6
- generated:
7
-
8
- ```ruby
9
- Project.new do |c|
10
- after_save do
11
- `pod install`
12
- end
13
- end
14
- ```
@@ -1,51 +0,0 @@
1
- #Xcode Project Support
2
-
3
- This document describes the level of support Xcake has for the various aspects of the Xcode Project.
4
-
5
- ## Project
6
-
7
- - Create a Project File
8
- - Create build configurations via configurations
9
- - Set name of project file
10
- - Setting Class Prefix
11
- - Setting Organization
12
- - Including Files and Groups (Currently done via Targets)
13
- - Including Frameworks (Currently done via Targets)
14
- - Specify build settings via configurations
15
- - Specify schemes (Currently only for applications via configurations - Xcode auto-creates for other types)
16
-
17
- ## Target
18
-
19
- - Create target
20
- - Create build configurations via configurations
21
- - Set name of target
22
- - Set primary language
23
- - Set platform
24
- - Set deployment target
25
- - Specify device (Universal, iPad Only or iPhone Only)
26
- - Specifying Files and Assets to include or exclude for Target
27
- - Specifying Frameworks to include for Target
28
- - Specify build settings via configurations
29
- - Simple methods for creating iOS, Mac and WatchOS Applications.
30
- - Simple methods for creating Unit Tests
31
- - Build Phases are generated implicity and can be specified explicity for:
32
- - Copy Headerss
33
- - Shell Script
34
-
35
- ## Build Configuration
36
-
37
- - Set name for configuration
38
- - Specify build settings
39
- - Set XCConfig to inherit settings from
40
-
41
- ## Scheme
42
-
43
- - Set name for scheme
44
- - Set build configuration for each action (Build, Launch, Archive etc.)
45
-
46
- ## Files
47
-
48
- - Can Include Normal Files
49
- - Can Include Bundles
50
- - Can Include Libraries
51
- - Can Include Localized Files
@@ -1,973 +0,0 @@
1
- // !$*UTF8*$!
2
- {
3
- archiveVersion = 1;
4
- classes = {
5
- };
6
- objectVersion = 46;
7
- objects = {
8
-
9
- /* Begin PBXBuildFile section */
10
- 1A9F172B267738493DEA1571 /* AdSupport.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 40E93EF8C4329C4C92DC1E65 /* AdSupport.framework */; };
11
- 1D3CABBB73CF4AFF9A4FCBB2 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 03F3824371A1E4408E2FB2B0 /* Foundation.framework */; };
12
- 1E0CCBA054195BE5E8ABA7D1 /* CakeMania.entitlements in Resources */ = {isa = PBXBuildFile; fileRef = 233946501B63EE884C17A9FF /* CakeMania.entitlements */; };
13
- 1EC23763D8902D70E13A4F64 /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = D97159C83751AB90A792F4AA /* LaunchScreen.storyboard */; };
14
- 2A76411DCDCF20C903670F25 /* CakeMania.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = A030EF7456BEF44CD0ABD49E /* CakeMania.xcassets */; };
15
- 3358D06E2A2E7155563DF253 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D454AC2732E9F1ABDBD2F47 /* UIKit.framework */; };
16
- 36DCAD0942F2444553620FA8 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = B48296069116EC3AD1774038 /* Main.storyboard */; };
17
- 56461110276353046FACB556 /* Main.swift in Sources */ = {isa = PBXBuildFile; fileRef = 5698974501779D6E46772C57 /* Main.swift */; };
18
- 782318EA510088E47AEA10E3 /* Main.swift in Sources */ = {isa = PBXBuildFile; fileRef = E9E4DB4C776788482EFF552F /* Main.swift */; };
19
- 82179FDBCC50EFCDF028BF4B /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 03F3824371A1E4408E2FB2B0 /* Foundation.framework */; };
20
- 965D308FDDE56E8F77005A02 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = D612857D1DD700F5559DF7C1 /* QuartzCore.framework */; };
21
- 9775CF6B046CCAC66F6A94A0 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = ED264238795EBA1EB00175AA /* ViewController.swift */; };
22
- 97F1C77BCA207DD47F0B921F /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 03F3824371A1E4408E2FB2B0 /* Foundation.framework */; };
23
- A9969F0EC4547EBE1AC3CE75 /* CakeMania-test.entitlements in Resources */ = {isa = PBXBuildFile; fileRef = 7BEAD9728F28E4E2150838F2 /* CakeMania-test.entitlements */; };
24
- AE858AD1E5964B2ACFA92939 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D454AC2732E9F1ABDBD2F47 /* UIKit.framework */; };
25
- C53F77FB9002301C7B8EA4FF /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D454AC2732E9F1ABDBD2F47 /* UIKit.framework */; };
26
- CA3B3C86953FC08924F58DD4 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = B8CAB48CB5A0DDDB91E98D79 /* AppDelegate.swift */; };
27
- E9843DC5AA3FE2C9682725C2 /* Prefix.pch in Resources */ = {isa = PBXBuildFile; fileRef = A8DF1F5192ABEA033D5B2D68 /* Prefix.pch */; };
28
- /* End PBXBuildFile section */
29
-
30
- /* Begin PBXFileReference section */
31
- 03F3824371A1E4408E2FB2B0 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
32
- 1D454AC2732E9F1ABDBD2F47 /* UIKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = UIKit.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/System/Library/Frameworks/UIKit.framework; sourceTree = DEVELOPER_DIR; };
33
- 233946501B63EE884C17A9FF /* CakeMania.entitlements */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.entitlements; path = CakeMania.entitlements; sourceTree = "<group>"; };
34
- 27E8A4BEFAA7B3302EDE8E99 /* CakeMania. */ = {isa = PBXFileReference; includeInIndex = 0; lastKnownFileType = wrapper.application; name = CakeMania.; path = CakeMania.app; sourceTree = BUILT_PRODUCTS_DIR; };
35
- 40E93EF8C4329C4C92DC1E65 /* AdSupport.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AdSupport.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/System/Library/Frameworks/AdSupport.framework; sourceTree = DEVELOPER_DIR; };
36
- 5698974501779D6E46772C57 /* Main.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Main.swift; sourceTree = "<group>"; };
37
- 60E140428F554B4D1D6DB890 /* CakeManiaTst. */ = {isa = PBXFileReference; includeInIndex = 0; lastKnownFileType = file; name = CakeManiaTst.; path = CakeManiaTst.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
38
- 750EB1B4E2920087D7539B2D /* CakeManiaUITst. */ = {isa = PBXFileReference; includeInIndex = 0; lastKnownFileType = file; name = CakeManiaUITst.; path = CakeManiaUITst.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
39
- 7BEAD9728F28E4E2150838F2 /* CakeMania-test.entitlements */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.entitlements; path = "CakeMania-test.entitlements"; sourceTree = "<group>"; };
40
- A030EF7456BEF44CD0ABD49E /* CakeMania.xcassets */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = folder.assetcatalog; path = CakeMania.xcassets; sourceTree = "<group>"; };
41
- A8DF1F5192ABEA033D5B2D68 /* Prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = Prefix.pch; sourceTree = "<group>"; };
42
- B48296069116EC3AD1774038 /* Main.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = Main.storyboard; path = Base.lproj/Main.storyboard; sourceTree = "<group>"; };
43
- B8CAB48CB5A0DDDB91E98D79 /* AppDelegate.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
44
- D4EDB95E044E95DDE0B45123 /* CakeMania-Bridging-Header.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "CakeMania-Bridging-Header.h"; sourceTree = "<group>"; };
45
- D612857D1DD700F5559DF7C1 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.3.sdk/System/Library/Frameworks/QuartzCore.framework; sourceTree = DEVELOPER_DIR; };
46
- D97159C83751AB90A792F4AA /* LaunchScreen.storyboard */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = file.storyboard; name = LaunchScreen.storyboard; path = Base.lproj/LaunchScreen.storyboard; sourceTree = "<group>"; };
47
- E9E4DB4C776788482EFF552F /* Main.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = Main.swift; sourceTree = "<group>"; };
48
- ED264238795EBA1EB00175AA /* ViewController.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = "<group>"; };
49
- /* End PBXFileReference section */
50
-
51
- /* Begin PBXFrameworksBuildPhase section */
52
- AD69EB8D300C73E5871AAE55 /* Frameworks */ = {
53
- isa = PBXFrameworksBuildPhase;
54
- buildActionMask = 2147483647;
55
- files = (
56
- 1D3CABBB73CF4AFF9A4FCBB2 /* Foundation.framework in Frameworks */,
57
- AE858AD1E5964B2ACFA92939 /* UIKit.framework in Frameworks */,
58
- 1A9F172B267738493DEA1571 /* AdSupport.framework in Frameworks */,
59
- 965D308FDDE56E8F77005A02 /* QuartzCore.framework in Frameworks */,
60
- );
61
- runOnlyForDeploymentPostprocessing = 0;
62
- };
63
- C27C5E5B46A4F766575DE138 /* Frameworks */ = {
64
- isa = PBXFrameworksBuildPhase;
65
- buildActionMask = 2147483647;
66
- files = (
67
- 82179FDBCC50EFCDF028BF4B /* Foundation.framework in Frameworks */,
68
- 3358D06E2A2E7155563DF253 /* UIKit.framework in Frameworks */,
69
- );
70
- runOnlyForDeploymentPostprocessing = 0;
71
- };
72
- E5A76B65EFD10A2C65CE12BF /* Frameworks */ = {
73
- isa = PBXFrameworksBuildPhase;
74
- buildActionMask = 2147483647;
75
- files = (
76
- 97F1C77BCA207DD47F0B921F /* Foundation.framework in Frameworks */,
77
- C53F77FB9002301C7B8EA4FF /* UIKit.framework in Frameworks */,
78
- );
79
- runOnlyForDeploymentPostprocessing = 0;
80
- };
81
- /* End PBXFrameworksBuildPhase section */
82
-
83
- /* Begin PBXGroup section */
84
- 290486E76E6E6199ED427118 /* Tst */ = {
85
- isa = PBXGroup;
86
- children = (
87
- E9E4DB4C776788482EFF552F /* Main.swift */,
88
- );
89
- path = Tst;
90
- sourceTree = "<group>";
91
- };
92
- 3C88CD2E01D71F1AA4BDEBBC /* UITst */ = {
93
- isa = PBXGroup;
94
- children = (
95
- 5698974501779D6E46772C57 /* Main.swift */,
96
- );
97
- path = UITst;
98
- sourceTree = "<group>";
99
- };
100
- 441B4997741B6B889B6D8497 /* Res */ = {
101
- isa = PBXGroup;
102
- children = (
103
- 7BEAD9728F28E4E2150838F2 /* CakeMania-test.entitlements */,
104
- 233946501B63EE884C17A9FF /* CakeMania.entitlements */,
105
- A030EF7456BEF44CD0ABD49E /* CakeMania.xcassets */,
106
- );
107
- path = Res;
108
- sourceTree = "<group>";
109
- };
110
- 4B3C9119160F9BE56A2DEA0E /* Frameworks */ = {
111
- isa = PBXGroup;
112
- children = (
113
- AE23653262A9136C79282587 /* iOS */,
114
- );
115
- name = Frameworks;
116
- sourceTree = "<group>";
117
- };
118
- 4DC34546851300A4D0CF36C6 /* Products */ = {
119
- isa = PBXGroup;
120
- children = (
121
- 60E140428F554B4D1D6DB890 /* CakeManiaTst. */,
122
- 750EB1B4E2920087D7539B2D /* CakeManiaUITst. */,
123
- 27E8A4BEFAA7B3302EDE8E99 /* CakeMania. */,
124
- );
125
- name = Products;
126
- sourceTree = "<group>";
127
- };
128
- 70989B444201A7F04E1354CF /* ObjC */ = {
129
- isa = PBXGroup;
130
- children = (
131
- D4EDB95E044E95DDE0B45123 /* CakeMania-Bridging-Header.h */,
132
- A8DF1F5192ABEA033D5B2D68 /* Prefix.pch */,
133
- );
134
- path = ObjC;
135
- sourceTree = "<group>";
136
- };
137
- 88C43E76F5803CD4FA4548A4 = {
138
- isa = PBXGroup;
139
- children = (
140
- 4DC34546851300A4D0CF36C6 /* Products */,
141
- 4B3C9119160F9BE56A2DEA0E /* Frameworks */,
142
- 290486E76E6E6199ED427118 /* Tst */,
143
- 3C88CD2E01D71F1AA4BDEBBC /* UITst */,
144
- 9F853CC88BD437AC7C5B892C /* Src */,
145
- 441B4997741B6B889B6D8497 /* Res */,
146
- );
147
- sourceTree = "<group>";
148
- };
149
- 9F853CC88BD437AC7C5B892C /* Src */ = {
150
- isa = PBXGroup;
151
- children = (
152
- B8CAB48CB5A0DDDB91E98D79 /* AppDelegate.swift */,
153
- 88C5E1B3781EE3103CD72257 /* LaunchScreen.storyboard */,
154
- C62D31777BAE12DA428188AC /* Main.storyboard */,
155
- 70989B444201A7F04E1354CF /* ObjC */,
156
- ED264238795EBA1EB00175AA /* ViewController.swift */,
157
- );
158
- path = Src;
159
- sourceTree = "<group>";
160
- };
161
- AE23653262A9136C79282587 /* iOS */ = {
162
- isa = PBXGroup;
163
- children = (
164
- 03F3824371A1E4408E2FB2B0 /* Foundation.framework */,
165
- 1D454AC2732E9F1ABDBD2F47 /* UIKit.framework */,
166
- 40E93EF8C4329C4C92DC1E65 /* AdSupport.framework */,
167
- D612857D1DD700F5559DF7C1 /* QuartzCore.framework */,
168
- );
169
- name = iOS;
170
- sourceTree = "<group>";
171
- };
172
- /* End PBXGroup section */
173
-
174
- /* Begin PBXNativeTarget section */
175
- 4D92BE07FADBC9796349860D /* CakeManiaTst */ = {
176
- isa = PBXNativeTarget;
177
- buildConfigurationList = 0E5E578447F51AFC3E94A486 /* Build configuration list for PBXNativeTarget "CakeManiaTst" */;
178
- buildPhases = (
179
- E5A76B65EFD10A2C65CE12BF /* Frameworks */,
180
- BF98CBBBA19B56EF7C1D1CA2 /* Sources */,
181
- );
182
- buildRules = (
183
- );
184
- dependencies = (
185
- );
186
- name = CakeManiaTst;
187
- productName = CakeManiaTst;
188
- productReference = 60E140428F554B4D1D6DB890 /* CakeManiaTst. */;
189
- productType = "com.apple.product-type.bundle.unit-test";
190
- };
191
- D2CF49CEAF900441E70E24B1 /* CakeMania */ = {
192
- isa = PBXNativeTarget;
193
- buildConfigurationList = 9DF56565C99F55BC9A08B5C5 /* Build configuration list for PBXNativeTarget "CakeMania" */;
194
- buildPhases = (
195
- AD69EB8D300C73E5871AAE55 /* Frameworks */,
196
- C2A2B0A2CC313D8193AEABD3 /* Sources */,
197
- C861B203415C25C25F56ACA3 /* Resources */,
198
- );
199
- buildRules = (
200
- );
201
- dependencies = (
202
- );
203
- name = CakeMania;
204
- productName = CakeMania;
205
- productReference = 27E8A4BEFAA7B3302EDE8E99 /* CakeMania. */;
206
- productType = "com.apple.product-type.application";
207
- };
208
- E1D6D3AA914753263EC9C524 /* CakeManiaUITst */ = {
209
- isa = PBXNativeTarget;
210
- buildConfigurationList = 82CB4AE1149629539FC74E93 /* Build configuration list for PBXNativeTarget "CakeManiaUITst" */;
211
- buildPhases = (
212
- C27C5E5B46A4F766575DE138 /* Frameworks */,
213
- 932294DE1072BFAA08F49FCD /* Sources */,
214
- );
215
- buildRules = (
216
- );
217
- dependencies = (
218
- );
219
- name = CakeManiaUITst;
220
- productName = CakeManiaUITst;
221
- productReference = 750EB1B4E2920087D7539B2D /* CakeManiaUITst. */;
222
- productType = "com.apple.product-type.bundle.ui-testing";
223
- };
224
- /* End PBXNativeTarget section */
225
-
226
- /* Begin PBXProject section */
227
- 3E636A4CD6038FC4E0203680 /* Project object */ = {
228
- isa = PBXProject;
229
- attributes = {
230
- CLASSPREFIX = CMN;
231
- LastSwiftUpdateCheck = 0730;
232
- LastUpgradeCheck = 0700;
233
- ORGANIZATIONNAME = "CakeMania Inc.";
234
- TargetAttributes = {
235
- D2CF49CEAF900441E70E24B1 = {
236
- DevelopmentTeam = XYZXYZ;
237
- };
238
- };
239
- };
240
- buildConfigurationList = 1B59C494C54B0AC970BC00AA /* Build configuration list for PBXProject "CakeMania" */;
241
- compatibilityVersion = "Xcode 3.2";
242
- developmentRegion = English;
243
- hasScannedForEncodings = 0;
244
- knownRegions = (
245
- en,
246
- );
247
- mainGroup = 88C43E76F5803CD4FA4548A4;
248
- productRefGroup = 4DC34546851300A4D0CF36C6 /* Products */;
249
- projectDirPath = "";
250
- projectRoot = "";
251
- targets = (
252
- 4D92BE07FADBC9796349860D /* CakeManiaTst */,
253
- E1D6D3AA914753263EC9C524 /* CakeManiaUITst */,
254
- D2CF49CEAF900441E70E24B1 /* CakeMania */,
255
- );
256
- };
257
- /* End PBXProject section */
258
-
259
- /* Begin PBXResourcesBuildPhase section */
260
- C861B203415C25C25F56ACA3 /* Resources */ = {
261
- isa = PBXResourcesBuildPhase;
262
- buildActionMask = 2147483647;
263
- files = (
264
- 1EC23763D8902D70E13A4F64 /* LaunchScreen.storyboard in Resources */,
265
- 36DCAD0942F2444553620FA8 /* Main.storyboard in Resources */,
266
- E9843DC5AA3FE2C9682725C2 /* Prefix.pch in Resources */,
267
- A9969F0EC4547EBE1AC3CE75 /* CakeMania-test.entitlements in Resources */,
268
- 1E0CCBA054195BE5E8ABA7D1 /* CakeMania.entitlements in Resources */,
269
- 2A76411DCDCF20C903670F25 /* CakeMania.xcassets in Resources */,
270
- );
271
- runOnlyForDeploymentPostprocessing = 0;
272
- };
273
- /* End PBXResourcesBuildPhase section */
274
-
275
- /* Begin PBXSourcesBuildPhase section */
276
- 932294DE1072BFAA08F49FCD /* Sources */ = {
277
- isa = PBXSourcesBuildPhase;
278
- buildActionMask = 2147483647;
279
- files = (
280
- 56461110276353046FACB556 /* Main.swift in Sources */,
281
- );
282
- runOnlyForDeploymentPostprocessing = 0;
283
- };
284
- BF98CBBBA19B56EF7C1D1CA2 /* Sources */ = {
285
- isa = PBXSourcesBuildPhase;
286
- buildActionMask = 2147483647;
287
- files = (
288
- 782318EA510088E47AEA10E3 /* Main.swift in Sources */,
289
- );
290
- runOnlyForDeploymentPostprocessing = 0;
291
- };
292
- C2A2B0A2CC313D8193AEABD3 /* Sources */ = {
293
- isa = PBXSourcesBuildPhase;
294
- buildActionMask = 2147483647;
295
- files = (
296
- CA3B3C86953FC08924F58DD4 /* AppDelegate.swift in Sources */,
297
- 9775CF6B046CCAC66F6A94A0 /* ViewController.swift in Sources */,
298
- );
299
- runOnlyForDeploymentPostprocessing = 0;
300
- };
301
- /* End PBXSourcesBuildPhase section */
302
-
303
- /* Begin PBXVariantGroup section */
304
- 88C5E1B3781EE3103CD72257 /* LaunchScreen.storyboard */ = {
305
- isa = PBXVariantGroup;
306
- children = (
307
- D97159C83751AB90A792F4AA /* LaunchScreen.storyboard */,
308
- );
309
- name = LaunchScreen.storyboard;
310
- sourceTree = "<group>";
311
- };
312
- C62D31777BAE12DA428188AC /* Main.storyboard */ = {
313
- isa = PBXVariantGroup;
314
- children = (
315
- B48296069116EC3AD1774038 /* Main.storyboard */,
316
- );
317
- name = Main.storyboard;
318
- sourceTree = "<group>";
319
- };
320
- /* End PBXVariantGroup section */
321
-
322
- /* Begin XCBuildConfiguration section */
323
- 12A1AADE57B731C8C92AF437 /* Production */ = {
324
- isa = XCBuildConfiguration;
325
- buildSettings = {
326
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
327
- CODE_SIGN_ENTITLEMENTS = Res/CakeMania.entitlements;
328
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
329
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
330
- DEVELOPMENT_TEAM = XYZXYZ;
331
- ENABLE_STRICT_OBJC_MSGSEND = YES;
332
- FACEBOOK_KEY = 888888888888888;
333
- GCC_NO_COMMON_BLOCKS = YES;
334
- GCC_PREFIX_HEADER = Src/ObjC/Prefix.pch;
335
- GCC_PREPROCESSOR_DEFINITIONS = (
336
- "$(inherited)",
337
- "CONFIG_PRODUCTION=1",
338
- );
339
- INFOPLIST_FILE = Info/CakeMania.plist;
340
- IPHONEOS_DEPLOYMENT_TARGET = 8.0;
341
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
342
- LIBRARY_SEARCH_PATHS = (
343
- "$(inherited)",
344
- "$(SRCROOT)/Lib/**",
345
- );
346
- MTL_ENABLE_DEBUG_INFO = NO;
347
- OTHER_LDFLAGS = (
348
- "$(inherited)",
349
- "-ObjC",
350
- );
351
- OTHER_SWIFT_FLAGS = "$(inherited) -DCONFIG_PRODUCTION";
352
- PRODUCT_BUNDLE_IDENTIFIER = com.CakeMania.CakeMania;
353
- PRODUCT_NAME = "$(TARGET_NAME)";
354
- PROVISIONING_PROFILE = XXX;
355
- SDKROOT = iphoneos;
356
- SWIFT_OBJC_BRIDGING_HEADER = "Src/ObjC/CakeMania-Bridging-Header.h";
357
- TARGETED_DEVICE_FAMILY = "1,2";
358
- };
359
- name = Production;
360
- };
361
- 27624358C510544A1B82F8BE /* Debug */ = {
362
- isa = XCBuildConfiguration;
363
- buildSettings = {
364
- BUNDLE_LOADER = "$(TEST_HOST)";
365
- DEBUG_INFORMATION_FORMAT = dwarf;
366
- ENABLE_STRICT_OBJC_MSGSEND = YES;
367
- GCC_NO_COMMON_BLOCKS = YES;
368
- INFOPLIST_FILE = Info/CakeManiaTst.plist;
369
- IPHONEOS_DEPLOYMENT_TARGET = 8.0;
370
- MTL_ENABLE_DEBUG_INFO = YES;
371
- PRODUCT_NAME = "$(TARGET_NAME)";
372
- SDKROOT = iphoneos;
373
- SWIFT_OPTIMIZATION_LEVEL = "-Onone";
374
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/CakeMania.app/CakeMania";
375
- };
376
- name = Debug;
377
- };
378
- 3BA40C8C3F57B0110C115243 /* Production */ = {
379
- isa = XCBuildConfiguration;
380
- buildSettings = {
381
- ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = "$(inherited)";
382
- ALWAYS_SEARCH_USER_PATHS = NO;
383
- CLANG_ANALYZER_NONNULL = YES;
384
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
385
- CLANG_CXX_LIBRARY = "libc++";
386
- CLANG_ENABLE_MODULES = YES;
387
- CLANG_ENABLE_OBJC_ARC = YES;
388
- CLANG_WARN_BOOL_CONVERSION = YES;
389
- CLANG_WARN_CONSTANT_CONVERSION = YES;
390
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
391
- CLANG_WARN_EMPTY_BODY = YES;
392
- CLANG_WARN_ENUM_CONVERSION = YES;
393
- CLANG_WARN_INFINITE_RECURSION = YES;
394
- CLANG_WARN_INT_CONVERSION = YES;
395
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
396
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
397
- CLANG_WARN_UNREACHABLE_CODE = YES;
398
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
399
- COPY_PHASE_STRIP = YES;
400
- CURRENT_PROJECT_VERSION = 1;
401
- DEFINES_MODULE = YES;
402
- ENABLE_BITCODE = YES;
403
- ENABLE_NS_ASSERTIONS = NO;
404
- ENABLE_STRICT_OBJC_MSGSEND = YES;
405
- GCC_C_LANGUAGE_STANDARD = gnu99;
406
- GCC_DYNAMIC_NO_PIC = NO;
407
- GCC_NO_COMMON_BLOCKS = YES;
408
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
409
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
410
- GCC_WARN_UNDECLARED_SELECTOR = YES;
411
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
412
- GCC_WARN_UNUSED_FUNCTION = YES;
413
- GCC_WARN_UNUSED_VARIABLE = YES;
414
- OTHER_CFLAGS = (
415
- "$(inherited)",
416
- "-DNS_BLOCK_ASSERTIONS=1",
417
- );
418
- SDKROOT = iphoneos;
419
- SWIFT_OPTIMIZATION_LEVEL = "-Onone";
420
- SWIFT_VERSION = 3.0.1;
421
- VALIDATE_PRODUCT = YES;
422
- };
423
- name = Production;
424
- };
425
- 4DCA4889DEA1477C157409C8 /* AppStore */ = {
426
- isa = XCBuildConfiguration;
427
- buildSettings = {
428
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
429
- CODE_SIGN_ENTITLEMENTS = Res/CakeMania.entitlements;
430
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
431
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
432
- DEVELOPMENT_TEAM = XYZXYZ;
433
- ENABLE_STRICT_OBJC_MSGSEND = YES;
434
- FACEBOOK_KEY = 888888888888888;
435
- GCC_NO_COMMON_BLOCKS = YES;
436
- GCC_PREFIX_HEADER = Src/ObjC/Prefix.pch;
437
- GCC_PREPROCESSOR_DEFINITIONS = (
438
- "$(inherited)",
439
- "CONFIG_APPSTORE=1",
440
- );
441
- INFOPLIST_FILE = Info/CakeMania.plist;
442
- IPHONEOS_DEPLOYMENT_TARGET = 8.0;
443
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
444
- LIBRARY_SEARCH_PATHS = (
445
- "$(inherited)",
446
- "$(SRCROOT)/Lib/**",
447
- );
448
- MTL_ENABLE_DEBUG_INFO = NO;
449
- OTHER_LDFLAGS = (
450
- "$(inherited)",
451
- "-ObjC",
452
- );
453
- OTHER_SWIFT_FLAGS = "$(inherited) -DCONFIG_APPSTORE";
454
- PRODUCT_BUNDLE_IDENTIFIER = com.CakeMania.CakeMania;
455
- PRODUCT_NAME = "$(TARGET_NAME)";
456
- PROVISIONING_PROFILE = YYY;
457
- SDKROOT = iphoneos;
458
- SWIFT_OBJC_BRIDGING_HEADER = "Src/ObjC/CakeMania-Bridging-Header.h";
459
- TARGETED_DEVICE_FAMILY = "1,2";
460
- };
461
- name = AppStore;
462
- };
463
- 50A0F334DC3C05B6CD85D4B1 /* AppStore */ = {
464
- isa = XCBuildConfiguration;
465
- buildSettings = {
466
- BUNDLE_LOADER = "$(TEST_HOST)";
467
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
468
- ENABLE_STRICT_OBJC_MSGSEND = YES;
469
- GCC_NO_COMMON_BLOCKS = YES;
470
- INFOPLIST_FILE = Info/CakeManiaUITst.plist;
471
- IPHONEOS_DEPLOYMENT_TARGET = 8.0;
472
- MTL_ENABLE_DEBUG_INFO = NO;
473
- PRODUCT_NAME = "$(TARGET_NAME)";
474
- SDKROOT = iphoneos;
475
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/CakeMania.app/CakeMania";
476
- };
477
- name = AppStore;
478
- };
479
- 65AC54FB0874B4C67692800F /* Production */ = {
480
- isa = XCBuildConfiguration;
481
- buildSettings = {
482
- BUNDLE_LOADER = "$(TEST_HOST)";
483
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
484
- ENABLE_STRICT_OBJC_MSGSEND = YES;
485
- GCC_NO_COMMON_BLOCKS = YES;
486
- INFOPLIST_FILE = Info/CakeManiaUITst.plist;
487
- IPHONEOS_DEPLOYMENT_TARGET = 8.0;
488
- MTL_ENABLE_DEBUG_INFO = NO;
489
- PRODUCT_NAME = "$(TARGET_NAME)";
490
- SDKROOT = iphoneos;
491
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/CakeMania.app/CakeMania";
492
- };
493
- name = Production;
494
- };
495
- 6DE530B87F9A83E96F6ECDD2 /* RC */ = {
496
- isa = XCBuildConfiguration;
497
- buildSettings = {
498
- BUNDLE_LOADER = "$(TEST_HOST)";
499
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
500
- ENABLE_STRICT_OBJC_MSGSEND = YES;
501
- GCC_NO_COMMON_BLOCKS = YES;
502
- INFOPLIST_FILE = Info/CakeManiaUITst.plist;
503
- IPHONEOS_DEPLOYMENT_TARGET = 8.0;
504
- MTL_ENABLE_DEBUG_INFO = NO;
505
- PRODUCT_NAME = "$(TARGET_NAME)";
506
- SDKROOT = iphoneos;
507
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/CakeMania.app/CakeMania";
508
- };
509
- name = RC;
510
- };
511
- 74B0CC3CA54690B4733F4FD5 /* RC */ = {
512
- isa = XCBuildConfiguration;
513
- buildSettings = {
514
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
515
- CODE_SIGN_ENTITLEMENTS = "Res/CakeMania-test.entitlements";
516
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
517
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
518
- DEVELOPMENT_TEAM = XYZXYZ;
519
- ENABLE_STRICT_OBJC_MSGSEND = YES;
520
- FACEBOOK_KEY = 999999999999999;
521
- GCC_NO_COMMON_BLOCKS = YES;
522
- GCC_PREFIX_HEADER = Src/ObjC/Prefix.pch;
523
- GCC_PREPROCESSOR_DEFINITIONS = (
524
- "$(inherited)",
525
- "CONFIG_RC=1",
526
- );
527
- INFOPLIST_FILE = Info/CakeMania.plist;
528
- IPHONEOS_DEPLOYMENT_TARGET = 8.0;
529
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
530
- LIBRARY_SEARCH_PATHS = (
531
- "$(inherited)",
532
- "$(SRCROOT)/Lib/**",
533
- );
534
- MTL_ENABLE_DEBUG_INFO = NO;
535
- OTHER_LDFLAGS = (
536
- "$(inherited)",
537
- "-ObjC",
538
- );
539
- OTHER_SWIFT_FLAGS = "$(inherited) -DCONFIG_RC";
540
- PRODUCT_BUNDLE_IDENTIFIER = com.CakeMania.CakeMania;
541
- PRODUCT_NAME = "$(TARGET_NAME)";
542
- PROVISIONING_PROFILE = XXX;
543
- SDKROOT = iphoneos;
544
- SWIFT_OBJC_BRIDGING_HEADER = "Src/ObjC/CakeMania-Bridging-Header.h";
545
- TARGETED_DEVICE_FAMILY = "1,2";
546
- };
547
- name = RC;
548
- };
549
- 772B774B15EEDE2C30BAEAC7 /* Debug */ = {
550
- isa = XCBuildConfiguration;
551
- buildSettings = {
552
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
553
- CODE_SIGN_ENTITLEMENTS = "Res/CakeMania-test.entitlements";
554
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
555
- DEBUG_INFORMATION_FORMAT = dwarf;
556
- DEVELOPMENT_TEAM = XYZXYZ;
557
- ENABLE_STRICT_OBJC_MSGSEND = YES;
558
- FACEBOOK_KEY = 999999999999999;
559
- GCC_NO_COMMON_BLOCKS = YES;
560
- GCC_PREFIX_HEADER = Src/ObjC/Prefix.pch;
561
- GCC_PREPROCESSOR_DEFINITIONS = (
562
- "$(inherited)",
563
- "CONFIG_DEBUG=1",
564
- );
565
- INFOPLIST_FILE = Info/CakeMania.plist;
566
- IPHONEOS_DEPLOYMENT_TARGET = 8.0;
567
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
568
- LIBRARY_SEARCH_PATHS = (
569
- "$(inherited)",
570
- "$(SRCROOT)/Lib/**",
571
- );
572
- MTL_ENABLE_DEBUG_INFO = YES;
573
- OTHER_LDFLAGS = (
574
- "$(inherited)",
575
- "-ObjC",
576
- );
577
- OTHER_SWIFT_FLAGS = "$(inherited) -DCONFIG_DEBUG";
578
- PRODUCT_BUNDLE_IDENTIFIER = com.CakeMania.CakeMania;
579
- PRODUCT_NAME = "$(TARGET_NAME)";
580
- SDKROOT = iphoneos;
581
- SWIFT_OBJC_BRIDGING_HEADER = "Src/ObjC/CakeMania-Bridging-Header.h";
582
- SWIFT_OPTIMIZATION_LEVEL = "-Onone";
583
- TARGETED_DEVICE_FAMILY = "1,2";
584
- };
585
- name = Debug;
586
- };
587
- 8C9295114034B3B52795015D /* RC */ = {
588
- isa = XCBuildConfiguration;
589
- buildSettings = {
590
- BUNDLE_LOADER = "$(TEST_HOST)";
591
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
592
- ENABLE_STRICT_OBJC_MSGSEND = YES;
593
- GCC_NO_COMMON_BLOCKS = YES;
594
- INFOPLIST_FILE = Info/CakeManiaTst.plist;
595
- IPHONEOS_DEPLOYMENT_TARGET = 8.0;
596
- MTL_ENABLE_DEBUG_INFO = NO;
597
- PRODUCT_NAME = "$(TARGET_NAME)";
598
- SDKROOT = iphoneos;
599
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/CakeMania.app/CakeMania";
600
- };
601
- name = RC;
602
- };
603
- 9DB3E217FF073C4F180CC2C3 /* RC */ = {
604
- isa = XCBuildConfiguration;
605
- buildSettings = {
606
- ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = "$(inherited)";
607
- ALWAYS_SEARCH_USER_PATHS = NO;
608
- CLANG_ANALYZER_NONNULL = YES;
609
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
610
- CLANG_CXX_LIBRARY = "libc++";
611
- CLANG_ENABLE_MODULES = YES;
612
- CLANG_ENABLE_OBJC_ARC = YES;
613
- CLANG_WARN_BOOL_CONVERSION = YES;
614
- CLANG_WARN_CONSTANT_CONVERSION = YES;
615
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
616
- CLANG_WARN_EMPTY_BODY = YES;
617
- CLANG_WARN_ENUM_CONVERSION = YES;
618
- CLANG_WARN_INFINITE_RECURSION = YES;
619
- CLANG_WARN_INT_CONVERSION = YES;
620
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
621
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
622
- CLANG_WARN_UNREACHABLE_CODE = YES;
623
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
624
- COPY_PHASE_STRIP = YES;
625
- CURRENT_PROJECT_VERSION = 1;
626
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
627
- DEFINES_MODULE = YES;
628
- ENABLE_BITCODE = YES;
629
- ENABLE_NS_ASSERTIONS = NO;
630
- ENABLE_STRICT_OBJC_MSGSEND = YES;
631
- GCC_C_LANGUAGE_STANDARD = gnu99;
632
- GCC_DYNAMIC_NO_PIC = NO;
633
- GCC_NO_COMMON_BLOCKS = YES;
634
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
635
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
636
- GCC_WARN_UNDECLARED_SELECTOR = YES;
637
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
638
- GCC_WARN_UNUSED_FUNCTION = YES;
639
- GCC_WARN_UNUSED_VARIABLE = YES;
640
- OTHER_CFLAGS = (
641
- "$(inherited)",
642
- "-DNS_BLOCK_ASSERTIONS=1",
643
- );
644
- SDKROOT = iphoneos;
645
- SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
646
- SWIFT_VERSION = 3.0.1;
647
- VALIDATE_PRODUCT = YES;
648
- };
649
- name = RC;
650
- };
651
- 9E5D2CD7FEBFF04D5F345C53 /* Staging */ = {
652
- isa = XCBuildConfiguration;
653
- buildSettings = {
654
- BUNDLE_LOADER = "$(TEST_HOST)";
655
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
656
- ENABLE_STRICT_OBJC_MSGSEND = YES;
657
- GCC_NO_COMMON_BLOCKS = YES;
658
- INFOPLIST_FILE = Info/CakeManiaUITst.plist;
659
- IPHONEOS_DEPLOYMENT_TARGET = 8.0;
660
- MTL_ENABLE_DEBUG_INFO = NO;
661
- PRODUCT_NAME = "$(TARGET_NAME)";
662
- SDKROOT = iphoneos;
663
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/CakeMania.app/CakeMania";
664
- };
665
- name = Staging;
666
- };
667
- D47BB6DCD90A8F96A138BC5E /* AppStore */ = {
668
- isa = XCBuildConfiguration;
669
- buildSettings = {
670
- ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = "$(inherited)";
671
- ALWAYS_SEARCH_USER_PATHS = NO;
672
- CLANG_ANALYZER_NONNULL = YES;
673
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
674
- CLANG_CXX_LIBRARY = "libc++";
675
- CLANG_ENABLE_MODULES = YES;
676
- CLANG_ENABLE_OBJC_ARC = YES;
677
- CLANG_WARN_BOOL_CONVERSION = YES;
678
- CLANG_WARN_CONSTANT_CONVERSION = YES;
679
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
680
- CLANG_WARN_EMPTY_BODY = YES;
681
- CLANG_WARN_ENUM_CONVERSION = YES;
682
- CLANG_WARN_INFINITE_RECURSION = YES;
683
- CLANG_WARN_INT_CONVERSION = YES;
684
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
685
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
686
- CLANG_WARN_UNREACHABLE_CODE = YES;
687
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
688
- COPY_PHASE_STRIP = YES;
689
- CURRENT_PROJECT_VERSION = 1;
690
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
691
- DEFINES_MODULE = YES;
692
- ENABLE_BITCODE = YES;
693
- ENABLE_NS_ASSERTIONS = NO;
694
- ENABLE_STRICT_OBJC_MSGSEND = YES;
695
- GCC_C_LANGUAGE_STANDARD = gnu99;
696
- GCC_DYNAMIC_NO_PIC = NO;
697
- GCC_NO_COMMON_BLOCKS = YES;
698
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
699
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
700
- GCC_WARN_UNDECLARED_SELECTOR = YES;
701
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
702
- GCC_WARN_UNUSED_FUNCTION = YES;
703
- GCC_WARN_UNUSED_VARIABLE = YES;
704
- OTHER_CFLAGS = (
705
- "$(inherited)",
706
- "-DNS_BLOCK_ASSERTIONS=1",
707
- );
708
- SDKROOT = iphoneos;
709
- SWIFT_OPTIMIZATION_LEVEL = "-Owholemodule";
710
- SWIFT_VERSION = 3.0.1;
711
- VALIDATE_PRODUCT = YES;
712
- };
713
- name = AppStore;
714
- };
715
- F1223A198BEAB5536B6D65E5 /* Production */ = {
716
- isa = XCBuildConfiguration;
717
- buildSettings = {
718
- BUNDLE_LOADER = "$(TEST_HOST)";
719
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
720
- ENABLE_STRICT_OBJC_MSGSEND = YES;
721
- GCC_NO_COMMON_BLOCKS = YES;
722
- INFOPLIST_FILE = Info/CakeManiaTst.plist;
723
- IPHONEOS_DEPLOYMENT_TARGET = 8.0;
724
- MTL_ENABLE_DEBUG_INFO = NO;
725
- PRODUCT_NAME = "$(TARGET_NAME)";
726
- SDKROOT = iphoneos;
727
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/CakeMania.app/CakeMania";
728
- };
729
- name = Production;
730
- };
731
- F34BAA0692900D6BD9F29204 /* Staging */ = {
732
- isa = XCBuildConfiguration;
733
- buildSettings = {
734
- BUNDLE_LOADER = "$(TEST_HOST)";
735
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
736
- ENABLE_STRICT_OBJC_MSGSEND = YES;
737
- GCC_NO_COMMON_BLOCKS = YES;
738
- INFOPLIST_FILE = Info/CakeManiaTst.plist;
739
- IPHONEOS_DEPLOYMENT_TARGET = 8.0;
740
- MTL_ENABLE_DEBUG_INFO = NO;
741
- PRODUCT_NAME = "$(TARGET_NAME)";
742
- SDKROOT = iphoneos;
743
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/CakeMania.app/CakeMania";
744
- };
745
- name = Staging;
746
- };
747
- F5BE92B4F351DB64951DF10E /* Debug */ = {
748
- isa = XCBuildConfiguration;
749
- buildSettings = {
750
- BUNDLE_LOADER = "$(TEST_HOST)";
751
- DEBUG_INFORMATION_FORMAT = dwarf;
752
- ENABLE_STRICT_OBJC_MSGSEND = YES;
753
- GCC_NO_COMMON_BLOCKS = YES;
754
- INFOPLIST_FILE = Info/CakeManiaUITst.plist;
755
- IPHONEOS_DEPLOYMENT_TARGET = 8.0;
756
- MTL_ENABLE_DEBUG_INFO = YES;
757
- PRODUCT_NAME = "$(TARGET_NAME)";
758
- SDKROOT = iphoneos;
759
- SWIFT_OPTIMIZATION_LEVEL = "-Onone";
760
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/CakeMania.app/CakeMania";
761
- };
762
- name = Debug;
763
- };
764
- F5BF5D49E48B472E8FCC0A47 /* AppStore */ = {
765
- isa = XCBuildConfiguration;
766
- buildSettings = {
767
- BUNDLE_LOADER = "$(TEST_HOST)";
768
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
769
- ENABLE_STRICT_OBJC_MSGSEND = YES;
770
- GCC_NO_COMMON_BLOCKS = YES;
771
- INFOPLIST_FILE = Info/CakeManiaTst.plist;
772
- IPHONEOS_DEPLOYMENT_TARGET = 8.0;
773
- MTL_ENABLE_DEBUG_INFO = NO;
774
- PRODUCT_NAME = "$(TARGET_NAME)";
775
- SDKROOT = iphoneos;
776
- TEST_HOST = "$(BUILT_PRODUCTS_DIR)/CakeMania.app/CakeMania";
777
- };
778
- name = AppStore;
779
- };
780
- F6D66F696F8125BB62AF56A3 /* Debug */ = {
781
- isa = XCBuildConfiguration;
782
- buildSettings = {
783
- ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = "$(inherited)";
784
- ALWAYS_SEARCH_USER_PATHS = NO;
785
- CLANG_ANALYZER_NONNULL = YES;
786
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
787
- CLANG_CXX_LIBRARY = "libc++";
788
- CLANG_ENABLE_MODULES = YES;
789
- CLANG_ENABLE_OBJC_ARC = YES;
790
- CLANG_WARN_BOOL_CONVERSION = YES;
791
- CLANG_WARN_CONSTANT_CONVERSION = YES;
792
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
793
- CLANG_WARN_EMPTY_BODY = YES;
794
- CLANG_WARN_ENUM_CONVERSION = YES;
795
- CLANG_WARN_INFINITE_RECURSION = YES;
796
- CLANG_WARN_INT_CONVERSION = YES;
797
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
798
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
799
- CLANG_WARN_UNREACHABLE_CODE = YES;
800
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
801
- COPY_PHASE_STRIP = NO;
802
- CURRENT_PROJECT_VERSION = 1;
803
- DEFINES_MODULE = YES;
804
- ENABLE_BITCODE = YES;
805
- ENABLE_NS_ASSERTIONS = NO;
806
- ENABLE_STRICT_OBJC_MSGSEND = YES;
807
- ENABLE_TESTABILITY = YES;
808
- GCC_C_LANGUAGE_STANDARD = gnu99;
809
- GCC_DYNAMIC_NO_PIC = NO;
810
- GCC_NO_COMMON_BLOCKS = YES;
811
- GCC_OPTIMIZATION_LEVEL = 0;
812
- GCC_PREPROCESSOR_DEFINITIONS = (
813
- "DEBUG=1",
814
- "$(inherited)",
815
- );
816
- GCC_SYMBOLS_PRIVATE_EXTERN = NO;
817
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
818
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
819
- GCC_WARN_UNDECLARED_SELECTOR = YES;
820
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
821
- GCC_WARN_UNUSED_FUNCTION = YES;
822
- GCC_WARN_UNUSED_VARIABLE = YES;
823
- ONLY_ACTIVE_ARCH = YES;
824
- OTHER_CFLAGS = (
825
- "$(inherited)",
826
- "-DNS_BLOCK_ASSERTIONS=1",
827
- );
828
- SDKROOT = iphoneos;
829
- SWIFT_OPTIMIZATION_LEVEL = "-Onone";
830
- SWIFT_VERSION = 3.0.1;
831
- };
832
- name = Debug;
833
- };
834
- FCF06FA1EDE145A9C1AD7EF2 /* Staging */ = {
835
- isa = XCBuildConfiguration;
836
- buildSettings = {
837
- ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES = "$(inherited)";
838
- ALWAYS_SEARCH_USER_PATHS = NO;
839
- CLANG_ANALYZER_NONNULL = YES;
840
- CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
841
- CLANG_CXX_LIBRARY = "libc++";
842
- CLANG_ENABLE_MODULES = YES;
843
- CLANG_ENABLE_OBJC_ARC = YES;
844
- CLANG_WARN_BOOL_CONVERSION = YES;
845
- CLANG_WARN_CONSTANT_CONVERSION = YES;
846
- CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
847
- CLANG_WARN_EMPTY_BODY = YES;
848
- CLANG_WARN_ENUM_CONVERSION = YES;
849
- CLANG_WARN_INFINITE_RECURSION = YES;
850
- CLANG_WARN_INT_CONVERSION = YES;
851
- CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
852
- CLANG_WARN_SUSPICIOUS_MOVE = YES;
853
- CLANG_WARN_UNREACHABLE_CODE = YES;
854
- CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
855
- COPY_PHASE_STRIP = YES;
856
- CURRENT_PROJECT_VERSION = 1;
857
- DEFINES_MODULE = YES;
858
- ENABLE_BITCODE = YES;
859
- ENABLE_NS_ASSERTIONS = NO;
860
- ENABLE_STRICT_OBJC_MSGSEND = YES;
861
- GCC_C_LANGUAGE_STANDARD = gnu99;
862
- GCC_DYNAMIC_NO_PIC = NO;
863
- GCC_NO_COMMON_BLOCKS = YES;
864
- GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
865
- GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
866
- GCC_WARN_UNDECLARED_SELECTOR = YES;
867
- GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
868
- GCC_WARN_UNUSED_FUNCTION = YES;
869
- GCC_WARN_UNUSED_VARIABLE = YES;
870
- OTHER_CFLAGS = (
871
- "$(inherited)",
872
- "-DNS_BLOCK_ASSERTIONS=1",
873
- );
874
- SDKROOT = iphoneos;
875
- SWIFT_OPTIMIZATION_LEVEL = "-Onone";
876
- SWIFT_VERSION = 3.0.1;
877
- VALIDATE_PRODUCT = YES;
878
- };
879
- name = Staging;
880
- };
881
- FD82AFE75752D4DA17ECD80B /* Staging */ = {
882
- isa = XCBuildConfiguration;
883
- buildSettings = {
884
- ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
885
- CODE_SIGN_ENTITLEMENTS = "Res/CakeMania-test.entitlements";
886
- "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
887
- DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
888
- DEVELOPMENT_TEAM = XYZXYZ;
889
- ENABLE_STRICT_OBJC_MSGSEND = YES;
890
- FACEBOOK_KEY = 999999999999999;
891
- GCC_NO_COMMON_BLOCKS = YES;
892
- GCC_PREFIX_HEADER = Src/ObjC/Prefix.pch;
893
- GCC_PREPROCESSOR_DEFINITIONS = (
894
- "$(inherited)",
895
- "CONFIG_STAGING=1",
896
- );
897
- INFOPLIST_FILE = Info/CakeMania.plist;
898
- IPHONEOS_DEPLOYMENT_TARGET = 8.0;
899
- LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
900
- LIBRARY_SEARCH_PATHS = (
901
- "$(inherited)",
902
- "$(SRCROOT)/Lib/**",
903
- );
904
- MTL_ENABLE_DEBUG_INFO = NO;
905
- OTHER_LDFLAGS = (
906
- "$(inherited)",
907
- "-ObjC",
908
- );
909
- OTHER_SWIFT_FLAGS = "$(inherited) -DCONFIG_STAGING";
910
- PRODUCT_BUNDLE_IDENTIFIER = com.CakeMania.CakeMania;
911
- PRODUCT_NAME = "$(TARGET_NAME)";
912
- PROVISIONING_PROFILE = XXX;
913
- SDKROOT = iphoneos;
914
- SWIFT_OBJC_BRIDGING_HEADER = "Src/ObjC/CakeMania-Bridging-Header.h";
915
- TARGETED_DEVICE_FAMILY = "1,2";
916
- };
917
- name = Staging;
918
- };
919
- /* End XCBuildConfiguration section */
920
-
921
- /* Begin XCConfigurationList section */
922
- 0E5E578447F51AFC3E94A486 /* Build configuration list for PBXNativeTarget "CakeManiaTst" */ = {
923
- isa = XCConfigurationList;
924
- buildConfigurations = (
925
- 27624358C510544A1B82F8BE /* Debug */,
926
- F34BAA0692900D6BD9F29204 /* Staging */,
927
- 8C9295114034B3B52795015D /* RC */,
928
- F1223A198BEAB5536B6D65E5 /* Production */,
929
- F5BF5D49E48B472E8FCC0A47 /* AppStore */,
930
- );
931
- defaultConfigurationIsVisible = 0;
932
- defaultConfigurationName = Release;
933
- };
934
- 1B59C494C54B0AC970BC00AA /* Build configuration list for PBXProject "CakeMania" */ = {
935
- isa = XCConfigurationList;
936
- buildConfigurations = (
937
- F6D66F696F8125BB62AF56A3 /* Debug */,
938
- FCF06FA1EDE145A9C1AD7EF2 /* Staging */,
939
- 9DB3E217FF073C4F180CC2C3 /* RC */,
940
- 3BA40C8C3F57B0110C115243 /* Production */,
941
- D47BB6DCD90A8F96A138BC5E /* AppStore */,
942
- );
943
- defaultConfigurationIsVisible = 0;
944
- defaultConfigurationName = Debug;
945
- };
946
- 82CB4AE1149629539FC74E93 /* Build configuration list for PBXNativeTarget "CakeManiaUITst" */ = {
947
- isa = XCConfigurationList;
948
- buildConfigurations = (
949
- F5BE92B4F351DB64951DF10E /* Debug */,
950
- 9E5D2CD7FEBFF04D5F345C53 /* Staging */,
951
- 6DE530B87F9A83E96F6ECDD2 /* RC */,
952
- 65AC54FB0874B4C67692800F /* Production */,
953
- 50A0F334DC3C05B6CD85D4B1 /* AppStore */,
954
- );
955
- defaultConfigurationIsVisible = 0;
956
- defaultConfigurationName = Release;
957
- };
958
- 9DF56565C99F55BC9A08B5C5 /* Build configuration list for PBXNativeTarget "CakeMania" */ = {
959
- isa = XCConfigurationList;
960
- buildConfigurations = (
961
- 772B774B15EEDE2C30BAEAC7 /* Debug */,
962
- FD82AFE75752D4DA17ECD80B /* Staging */,
963
- 74B0CC3CA54690B4733F4FD5 /* RC */,
964
- 12A1AADE57B731C8C92AF437 /* Production */,
965
- 4DCA4889DEA1477C157409C8 /* AppStore */,
966
- );
967
- defaultConfigurationIsVisible = 0;
968
- defaultConfigurationName = Release;
969
- };
970
- /* End XCConfigurationList section */
971
- };
972
- rootObject = 3E636A4CD6038FC4E0203680 /* Project object */;
973
- }