Skip to content

Commit dcd473a

Browse files
committed
Tidied the source tree to make the addition of the framework target less distruptive.
1 parent 2080c7e commit dcd473a

File tree

4 files changed

+41
-49
lines changed

4 files changed

+41
-49
lines changed

LetsMove-Info.plist

+7-15
Original file line numberDiff line numberDiff line change
@@ -5,28 +5,20 @@
55
<key>CFBundleDevelopmentRegion</key>
66
<string>en</string>
77
<key>CFBundleExecutable</key>
8-
<string>${EXECUTABLE_NAME}</string>
9-
<key>CFBundleIconFile</key>
10-
<string></string>
8+
<string>$(EXECUTABLE_NAME)</string>
119
<key>CFBundleIdentifier</key>
1210
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
1311
<key>CFBundleInfoDictionaryVersion</key>
1412
<string>6.0</string>
1513
<key>CFBundleName</key>
16-
<string>${PRODUCT_NAME}</string>
14+
<string>$(PRODUCT_NAME)</string>
1715
<key>CFBundlePackageType</key>
18-
<string>APPL</string>
16+
<string>FMWK</string>
1917
<key>CFBundleShortVersionString</key>
20-
<string>1.0</string>
21-
<key>CFBundleSignature</key>
22-
<string>????</string>
18+
<string>1.20</string>
2319
<key>CFBundleVersion</key>
24-
<string>1</string>
25-
<key>LSMinimumSystemVersion</key>
26-
<string>${MACOSX_DEPLOYMENT_TARGET}</string>
27-
<key>NSMainNibFile</key>
28-
<string>MainMenu</string>
29-
<key>NSPrincipalClass</key>
30-
<string>NSApplication</string>
20+
<string>1.20</string>
21+
<key>NSHumanReadableCopyright</key>
22+
<string>Copyright © 2009–2016 Potion Factory LLC</string>
3123
</dict>
3224
</plist>

LetsMove/Info.plist LetsMove-Test-Info.plist

+15-7
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,28 @@
55
<key>CFBundleDevelopmentRegion</key>
66
<string>en</string>
77
<key>CFBundleExecutable</key>
8-
<string>$(EXECUTABLE_NAME)</string>
8+
<string>${EXECUTABLE_NAME}</string>
9+
<key>CFBundleIconFile</key>
10+
<string></string>
911
<key>CFBundleIdentifier</key>
1012
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
1113
<key>CFBundleInfoDictionaryVersion</key>
1214
<string>6.0</string>
1315
<key>CFBundleName</key>
14-
<string>$(PRODUCT_NAME)</string>
16+
<string>${PRODUCT_NAME}</string>
1517
<key>CFBundlePackageType</key>
16-
<string>FMWK</string>
18+
<string>APPL</string>
1719
<key>CFBundleShortVersionString</key>
18-
<string>1.20</string>
20+
<string>1.0</string>
21+
<key>CFBundleSignature</key>
22+
<string>????</string>
1923
<key>CFBundleVersion</key>
20-
<string>1.20</string>
21-
<key>NSHumanReadableCopyright</key>
22-
<string>Copyright © 2009–2016 Potion Factory LLC</string>
24+
<string>1</string>
25+
<key>LSMinimumSystemVersion</key>
26+
<string>${MACOSX_DEPLOYMENT_TARGET}</string>
27+
<key>NSMainNibFile</key>
28+
<string>MainMenu</string>
29+
<key>NSPrincipalClass</key>
30+
<string>NSApplication</string>
2331
</dict>
2432
</plist>

LetsMove/LetsMove.h LetsMove.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//
55
// Created by Matt Prowse on 14/05/2016.
66
//
7-
//
7+
// The contents of this file are dedicated to the public domain.
88

99
#import <Cocoa/Cocoa.h>
1010

LetsMove.xcodeproj/project.pbxproj

+18-26
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515
A17CADEB192F7E14008A209F /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = A17CADE5192F7E14008A209F /* InfoPlist.strings */; };
1616
A17CADEC192F7E14008A209F /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = A17CADE7192F7E14008A209F /* MainMenu.xib */; };
1717
A17CADED192F7E14008A209F /* MoveApplication.strings in Resources */ = {isa = PBXBuildFile; fileRef = A17CADE9192F7E14008A209F /* MoveApplication.strings */; };
18-
F146F82A1CE7094400233A9B /* LetsMove.h in Headers */ = {isa = PBXBuildFile; fileRef = F146F8291CE7094400233A9B /* LetsMove.h */; settings = {ATTRIBUTES = (Public, ); }; };
1918
F146F8301CE7097500233A9B /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F146F82F1CE7097500233A9B /* Cocoa.framework */; };
2019
F146F8321CE7097800233A9B /* Security.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = F146F8311CE7097800233A9B /* Security.framework */; };
2120
F146F8331CE7124100233A9B /* MoveApplication.strings in Resources */ = {isa = PBXBuildFile; fileRef = A17CADE9192F7E14008A209F /* MoveApplication.strings */; };
2221
F146F8341CE7125900233A9B /* PFMoveApplication.m in Sources */ = {isa = PBXBuildFile; fileRef = A120E7F710630B160045BE3F /* PFMoveApplication.m */; };
2322
F146F8391CE7167F00233A9B /* PFMoveApplication.h in Headers */ = {isa = PBXBuildFile; fileRef = A120E7F610630B160045BE3F /* PFMoveApplication.h */; settings = {ATTRIBUTES = (Public, ); }; };
23+
F146F83C1CE71DAF00233A9B /* LetsMove.h in Headers */ = {isa = PBXBuildFile; fileRef = F146F83B1CE71D9700233A9B /* LetsMove.h */; settings = {ATTRIBUTES = (Public, ); }; };
2424
/* End PBXBuildFile section */
2525

2626
/* Begin PBXFileReference section */
@@ -33,8 +33,8 @@
3333
29B97324FDCFA39411CA2CEA /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = /System/Library/Frameworks/AppKit.framework; sourceTree = "<absolute>"; };
3434
29B97325FDCFA39411CA2CEA /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = /System/Library/Frameworks/Foundation.framework; sourceTree = "<absolute>"; };
3535
6317AB1D1068842E000355D9 /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = /System/Library/Frameworks/Security.framework; sourceTree = "<absolute>"; };
36-
8D1107310486CEB800E47090 /* LetsMove-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "LetsMove-Info.plist"; sourceTree = "<group>"; };
37-
8D1107320486CEB800E47090 /* LetsMove.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = LetsMove.app; sourceTree = BUILT_PRODUCTS_DIR; };
36+
8D1107310486CEB800E47090 /* LetsMove-Test-Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = "LetsMove-Test-Info.plist"; sourceTree = "<group>"; };
37+
8D1107320486CEB800E47090 /* LetsMove Test.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "LetsMove Test.app"; sourceTree = BUILT_PRODUCTS_DIR; };
3838
A120E7F610630B160045BE3F /* PFMoveApplication.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = PFMoveApplication.h; sourceTree = "<group>"; };
3939
A120E7F710630B160045BE3F /* PFMoveApplication.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = PFMoveApplication.m; sourceTree = "<group>"; };
4040
A1339024192F8183009ABCE2 /* cs */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = cs; path = cs.lproj/MoveApplication.strings; sourceTree = "<group>"; };
@@ -64,11 +64,11 @@
6464
C3A14200EF754221ACE32119 /* mk */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = mk; path = mk.lproj/MoveApplication.strings; sourceTree = "<group>"; };
6565
D2CC8CA81B90F10700F763DF /* sk */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = sk; path = sk.lproj/MoveApplication.strings; sourceTree = "<group>"; };
6666
F146F8271CE7094400233A9B /* LetsMove.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = LetsMove.framework; sourceTree = BUILT_PRODUCTS_DIR; };
67-
F146F8291CE7094400233A9B /* LetsMove.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LetsMove.h; sourceTree = "<group>"; };
68-
F146F82B1CE7094400233A9B /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
6967
F146F82F1CE7097500233A9B /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; };
7068
F146F8311CE7097800233A9B /* Security.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Security.framework; path = System/Library/Frameworks/Security.framework; sourceTree = SDKROOT; };
7169
F146F8381CE7164D00233A9B /* LetsMove.modulemap */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = "sourcecode.module-map"; path = LetsMove.modulemap; sourceTree = "<group>"; };
70+
F146F83A1CE71D8A00233A9B /* LetsMove-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "LetsMove-Info.plist"; sourceTree = "<group>"; };
71+
F146F83B1CE71D9700233A9B /* LetsMove.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = LetsMove.h; sourceTree = "<group>"; };
7272
F7846CE41A9F83E100BFAF88 /* ca */ = {isa = PBXFileReference; fileEncoding = 10; lastKnownFileType = text.plist.strings; name = ca; path = ca.lproj/MoveApplication.strings; sourceTree = "<group>"; };
7373
/* End PBXFileReference section */
7474

@@ -127,7 +127,7 @@
127127
19C28FACFE9D520D11CA2CBB /* Products */ = {
128128
isa = PBXGroup;
129129
children = (
130-
8D1107320486CEB800E47090 /* LetsMove.app */,
130+
8D1107320486CEB800E47090 /* LetsMove Test.app */,
131131
F146F8271CE7094400233A9B /* LetsMove.framework */,
132132
);
133133
name = Products;
@@ -140,7 +140,6 @@
140140
080E96DDFE201D6D7F000001 /* Classes */,
141141
29B97315FDCFA39411CA2CEA /* Other Sources */,
142142
29B97317FDCFA39411CA2CEA /* Resources */,
143-
F146F8281CE7094400233A9B /* LetsMove */,
144143
29B97323FDCFA39411CA2CEA /* Frameworks */,
145144
19C28FACFE9D520D11CA2CBB /* Products */,
146145
);
@@ -151,6 +150,7 @@
151150
29B97315FDCFA39411CA2CEA /* Other Sources */ = {
152151
isa = PBXGroup;
153152
children = (
153+
F146F83B1CE71D9700233A9B /* LetsMove.h */,
154154
256AC3F00F4B6AF500CF3369 /* LetsMove_Prefix.pch */,
155155
29B97316FDCFA39411CA2CEA /* main.m */,
156156
);
@@ -160,11 +160,12 @@
160160
29B97317FDCFA39411CA2CEA /* Resources */ = {
161161
isa = PBXGroup;
162162
children = (
163-
8D1107310486CEB800E47090 /* LetsMove-Info.plist */,
163+
F146F83A1CE71D8A00233A9B /* LetsMove-Info.plist */,
164+
8D1107310486CEB800E47090 /* LetsMove-Test-Info.plist */,
165+
F146F8381CE7164D00233A9B /* LetsMove.modulemap */,
164166
A17CADE5192F7E14008A209F /* InfoPlist.strings */,
165167
A17CADE7192F7E14008A209F /* MainMenu.xib */,
166168
A17CADE9192F7E14008A209F /* MoveApplication.strings */,
167-
F146F8381CE7164D00233A9B /* LetsMove.modulemap */,
168169
);
169170
name = Resources;
170171
sourceTree = "<group>";
@@ -180,23 +181,14 @@
180181
name = Frameworks;
181182
sourceTree = "<group>";
182183
};
183-
F146F8281CE7094400233A9B /* LetsMove */ = {
184-
isa = PBXGroup;
185-
children = (
186-
F146F8291CE7094400233A9B /* LetsMove.h */,
187-
F146F82B1CE7094400233A9B /* Info.plist */,
188-
);
189-
path = LetsMove;
190-
sourceTree = "<group>";
191-
};
192184
/* End PBXGroup section */
193185

194186
/* Begin PBXHeadersBuildPhase section */
195187
F146F8241CE7094400233A9B /* Headers */ = {
196188
isa = PBXHeadersBuildPhase;
197189
buildActionMask = 2147483647;
198190
files = (
199-
F146F82A1CE7094400233A9B /* LetsMove.h in Headers */,
191+
F146F83C1CE71DAF00233A9B /* LetsMove.h in Headers */,
200192
F146F8391CE7167F00233A9B /* PFMoveApplication.h in Headers */,
201193
);
202194
runOnlyForDeploymentPostprocessing = 0;
@@ -219,7 +211,7 @@
219211
name = "LetsMove Test";
220212
productInstallPath = "$(HOME)/Applications";
221213
productName = LetsMove;
222-
productReference = 8D1107320486CEB800E47090 /* LetsMove.app */;
214+
productReference = 8D1107320486CEB800E47090 /* LetsMove Test.app */;
223215
productType = "com.apple.product-type.application";
224216
};
225217
F146F8261CE7094400233A9B /* LetsMove */ = {
@@ -396,10 +388,10 @@
396388
GCC_OPTIMIZATION_LEVEL = 0;
397389
GCC_PRECOMPILE_PREFIX_HEADER = YES;
398390
GCC_PREFIX_HEADER = LetsMove_Prefix.pch;
399-
INFOPLIST_FILE = "LetsMove-Info.plist";
391+
INFOPLIST_FILE = "LetsMove-Test-Info.plist";
400392
INSTALL_PATH = "$(HOME)/Applications";
401393
PRODUCT_BUNDLE_IDENTIFIER = "com.potionfactory.LetsMove-Test";
402-
PRODUCT_NAME = LetsMove;
394+
PRODUCT_NAME = "LetsMove Test";
403395
};
404396
name = Debug;
405397
};
@@ -412,10 +404,10 @@
412404
GCC_MODEL_TUNING = G5;
413405
GCC_PRECOMPILE_PREFIX_HEADER = YES;
414406
GCC_PREFIX_HEADER = LetsMove_Prefix.pch;
415-
INFOPLIST_FILE = "LetsMove-Info.plist";
407+
INFOPLIST_FILE = "LetsMove-Test-Info.plist";
416408
INSTALL_PATH = "$(HOME)/Applications";
417409
PRODUCT_BUNDLE_IDENTIFIER = "com.potionfactory.LetsMove-Test";
418-
PRODUCT_NAME = LetsMove;
410+
PRODUCT_NAME = "LetsMove Test";
419411
};
420412
name = Release;
421413
};
@@ -551,7 +543,7 @@
551543
"$(inherited)",
552544
);
553545
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
554-
INFOPLIST_FILE = LetsMove/Info.plist;
546+
INFOPLIST_FILE = "LetsMove-Info.plist";
555547
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
556548
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks";
557549
MACOSX_DEPLOYMENT_TARGET = 10.6;
@@ -593,7 +585,7 @@
593585
FRAMEWORK_VERSION = A;
594586
GCC_NO_COMMON_BLOCKS = YES;
595587
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
596-
INFOPLIST_FILE = LetsMove/Info.plist;
588+
INFOPLIST_FILE = "LetsMove-Info.plist";
597589
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
598590
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/../Frameworks @loader_path/Frameworks";
599591
MACOSX_DEPLOYMENT_TARGET = 10.6;

0 commit comments

Comments
 (0)