Skip to content

Commit a25b7b0

Browse files
authored
Fix the xcodeproj. (#14)
A last minute change in #13 resulted in the Xcode project not picking up the source files.
1 parent fadfcb6 commit a25b7b0

File tree

1 file changed

+28
-29
lines changed

1 file changed

+28
-29
lines changed

CatalogByConvention/CatalogByConvention.xcodeproj/project.pbxproj

Lines changed: 28 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -7,24 +7,24 @@
77
objects = {
88

99
/* Begin PBXBuildFile section */
10-
66B35F561F84269E000B0CB8 /* CatalogByConvention.h in Headers */ = {isa = PBXBuildFile; fileRef = 66B35F4F1F84269E000B0CB8 /* CatalogByConvention.h */; };
11-
66B35F571F84269E000B0CB8 /* CBCCatalogExample.h in Headers */ = {isa = PBXBuildFile; fileRef = 66B35F501F84269E000B0CB8 /* CBCCatalogExample.h */; };
12-
66B35F581F84269E000B0CB8 /* CBCNodeListViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 66B35F511F84269E000B0CB8 /* CBCNodeListViewController.h */; };
13-
66B35F591F84269E000B0CB8 /* CBCNodeListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 66B35F521F84269E000B0CB8 /* CBCNodeListViewController.m */; };
14-
66B35F5A1F84269E000B0CB8 /* CBCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = 66B35F541F84269E000B0CB8 /* CBCRuntime.h */; };
15-
66B35F5B1F84269E000B0CB8 /* CBCRuntime.m in Sources */ = {isa = PBXBuildFile; fileRef = 66B35F551F84269E000B0CB8 /* CBCRuntime.m */; };
1610
66B35F5F1F842A4C000B0CB8 /* Info.plist in Resources */ = {isa = PBXBuildFile; fileRef = 66B35F5E1F842A4C000B0CB8 /* Info.plist */; };
11+
66B35F671F843DBC000B0CB8 /* CatalogByConvention.h in Headers */ = {isa = PBXBuildFile; fileRef = 66B35F601F843DBC000B0CB8 /* CatalogByConvention.h */; };
12+
66B35F681F843DBC000B0CB8 /* CBCCatalogExample.h in Headers */ = {isa = PBXBuildFile; fileRef = 66B35F611F843DBC000B0CB8 /* CBCCatalogExample.h */; };
13+
66B35F691F843DBC000B0CB8 /* CBCNodeListViewController.h in Headers */ = {isa = PBXBuildFile; fileRef = 66B35F621F843DBC000B0CB8 /* CBCNodeListViewController.h */; };
14+
66B35F6A1F843DBC000B0CB8 /* CBCNodeListViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 66B35F631F843DBC000B0CB8 /* CBCNodeListViewController.m */; };
15+
66B35F6B1F843DBC000B0CB8 /* CBCRuntime.h in Headers */ = {isa = PBXBuildFile; fileRef = 66B35F651F843DBC000B0CB8 /* CBCRuntime.h */; };
16+
66B35F6C1F843DBC000B0CB8 /* CBCRuntime.m in Sources */ = {isa = PBXBuildFile; fileRef = 66B35F661F843DBC000B0CB8 /* CBCRuntime.m */; };
1717
/* End PBXBuildFile section */
1818

1919
/* Begin PBXFileReference section */
2020
66B35F351F842691000B0CB8 /* CatalogByConvention.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = CatalogByConvention.framework; sourceTree = BUILT_PRODUCTS_DIR; };
21-
66B35F4F1F84269E000B0CB8 /* CatalogByConvention.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CatalogByConvention.h; path = ../../src/CatalogByConvention.h; sourceTree = "<group>"; };
22-
66B35F501F84269E000B0CB8 /* CBCCatalogExample.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CBCCatalogExample.h; path = ../../src/CBCCatalogExample.h; sourceTree = "<group>"; };
23-
66B35F511F84269E000B0CB8 /* CBCNodeListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = CBCNodeListViewController.h; path = ../../src/CBCNodeListViewController.h; sourceTree = "<group>"; };
24-
66B35F521F84269E000B0CB8 /* CBCNodeListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = CBCNodeListViewController.m; path = ../../src/CBCNodeListViewController.m; sourceTree = "<group>"; };
25-
66B35F541F84269E000B0CB8 /* CBCRuntime.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CBCRuntime.h; sourceTree = "<group>"; };
26-
66B35F551F84269E000B0CB8 /* CBCRuntime.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CBCRuntime.m; sourceTree = "<group>"; };
2721
66B35F5E1F842A4C000B0CB8 /* Info.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
22+
66B35F601F843DBC000B0CB8 /* CatalogByConvention.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CatalogByConvention.h; sourceTree = "<group>"; };
23+
66B35F611F843DBC000B0CB8 /* CBCCatalogExample.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CBCCatalogExample.h; sourceTree = "<group>"; };
24+
66B35F621F843DBC000B0CB8 /* CBCNodeListViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CBCNodeListViewController.h; sourceTree = "<group>"; };
25+
66B35F631F843DBC000B0CB8 /* CBCNodeListViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CBCNodeListViewController.m; sourceTree = "<group>"; };
26+
66B35F651F843DBC000B0CB8 /* CBCRuntime.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = CBCRuntime.h; sourceTree = "<group>"; };
27+
66B35F661F843DBC000B0CB8 /* CBCRuntime.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = CBCRuntime.m; sourceTree = "<group>"; };
2828
/* End PBXFileReference section */
2929

3030
/* Begin PBXFrameworksBuildPhase section */
@@ -58,24 +58,23 @@
5858
66B35F371F842691000B0CB8 /* src */ = {
5959
isa = PBXGroup;
6060
children = (
61-
66B35F4F1F84269E000B0CB8 /* CatalogByConvention.h */,
62-
66B35F501F84269E000B0CB8 /* CBCCatalogExample.h */,
63-
66B35F511F84269E000B0CB8 /* CBCNodeListViewController.h */,
64-
66B35F521F84269E000B0CB8 /* CBCNodeListViewController.m */,
65-
66B35F531F84269E000B0CB8 /* private */,
61+
66B35F601F843DBC000B0CB8 /* CatalogByConvention.h */,
62+
66B35F611F843DBC000B0CB8 /* CBCCatalogExample.h */,
63+
66B35F621F843DBC000B0CB8 /* CBCNodeListViewController.h */,
64+
66B35F631F843DBC000B0CB8 /* CBCNodeListViewController.m */,
65+
66B35F641F843DBC000B0CB8 /* private */,
6666
);
6767
name = src;
68-
path = CatalogByConvention;
68+
path = ../src;
6969
sourceTree = "<group>";
7070
};
71-
66B35F531F84269E000B0CB8 /* private */ = {
71+
66B35F641F843DBC000B0CB8 /* private */ = {
7272
isa = PBXGroup;
7373
children = (
74-
66B35F541F84269E000B0CB8 /* CBCRuntime.h */,
75-
66B35F551F84269E000B0CB8 /* CBCRuntime.m */,
74+
66B35F651F843DBC000B0CB8 /* CBCRuntime.h */,
75+
66B35F661F843DBC000B0CB8 /* CBCRuntime.m */,
7676
);
77-
name = private;
78-
path = ../../src/private;
77+
path = private;
7978
sourceTree = "<group>";
8079
};
8180
/* End PBXGroup section */
@@ -85,10 +84,10 @@
8584
isa = PBXHeadersBuildPhase;
8685
buildActionMask = 2147483647;
8786
files = (
88-
66B35F571F84269E000B0CB8 /* CBCCatalogExample.h in Headers */,
89-
66B35F581F84269E000B0CB8 /* CBCNodeListViewController.h in Headers */,
90-
66B35F5A1F84269E000B0CB8 /* CBCRuntime.h in Headers */,
91-
66B35F561F84269E000B0CB8 /* CatalogByConvention.h in Headers */,
87+
66B35F681F843DBC000B0CB8 /* CBCCatalogExample.h in Headers */,
88+
66B35F691F843DBC000B0CB8 /* CBCNodeListViewController.h in Headers */,
89+
66B35F6B1F843DBC000B0CB8 /* CBCRuntime.h in Headers */,
90+
66B35F671F843DBC000B0CB8 /* CatalogByConvention.h in Headers */,
9291
);
9392
runOnlyForDeploymentPostprocessing = 0;
9493
};
@@ -162,8 +161,8 @@
162161
isa = PBXSourcesBuildPhase;
163162
buildActionMask = 2147483647;
164163
files = (
165-
66B35F591F84269E000B0CB8 /* CBCNodeListViewController.m in Sources */,
166-
66B35F5B1F84269E000B0CB8 /* CBCRuntime.m in Sources */,
164+
66B35F6A1F843DBC000B0CB8 /* CBCNodeListViewController.m in Sources */,
165+
66B35F6C1F843DBC000B0CB8 /* CBCRuntime.m in Sources */,
167166
);
168167
runOnlyForDeploymentPostprocessing = 0;
169168
};

0 commit comments

Comments
 (0)