Skip to content

Commit a3892b3

Browse files
committed
Revised directory structure.
1 parent a661be0 commit a3892b3

File tree

9 files changed

+32
-16
lines changed

9 files changed

+32
-16
lines changed

Static Sort.xcodeproj/project.pbxproj

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

99
/* Begin PBXBuildFile section */
10-
CEFDE9DE1CA43F4A00A66716 /* main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CEFDE9DC1CA43F4A00A66716 /* main.cpp */; };
10+
CE929F102512151E008DDE8D /* main.cpp in Sources */ = {isa = PBXBuildFile; fileRef = CE929F0C2512151E008DDE8D /* main.cpp */; };
1111
/* End PBXBuildFile section */
1212

1313
/* Begin PBXCopyFilesBuildPhase section */
@@ -23,14 +23,14 @@
2323
/* End PBXCopyFilesBuildPhase section */
2424

2525
/* Begin PBXFileReference section */
26-
CE2E5248249049CE0010CCC0 /* bench_pair_sort.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = bench_pair_sort.h; sourceTree = "<group>"; };
26+
CE929F082512151E008DDE8D /* bench_10.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bench_10.h; sourceTree = "<group>"; };
27+
CE929F092512151E008DDE8D /* bench_6.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bench_6.h; sourceTree = "<group>"; };
28+
CE929F0A2512151E008DDE8D /* bench_n.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bench_n.h; sourceTree = "<group>"; };
29+
CE929F0B2512151E008DDE8D /* bench_pair_sort.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bench_pair_sort.h; sourceTree = "<group>"; };
30+
CE929F0C2512151E008DDE8D /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = "<group>"; };
31+
CE929F0D2512151E008DDE8D /* timer.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = timer.h; sourceTree = "<group>"; };
32+
CE929F0F2512151E008DDE8D /* static_sort.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = static_sort.h; sourceTree = "<group>"; };
2733
CEFDE9CF1CA43A7800A66716 /* Static Sort */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = "Static Sort"; sourceTree = BUILT_PRODUCTS_DIR; };
28-
CEFDE9DB1CA43F4A00A66716 /* bench_6.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = bench_6.h; sourceTree = "<group>"; };
29-
CEFDE9DC1CA43F4A00A66716 /* main.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.cpp.cpp; path = main.cpp; sourceTree = "<group>"; };
30-
CEFDE9DD1CA43F4A00A66716 /* static_sort.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = static_sort.h; sourceTree = "<group>"; };
31-
CEFDE9DF1CA452E500A66716 /* bench_n.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = bench_n.h; sourceTree = "<group>"; };
32-
CEFDE9E01CA465F300A66716 /* timer.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = timer.h; sourceTree = "<group>"; };
33-
CEFDE9E11CA47EC500A66716 /* bench_10.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = bench_10.h; sourceTree = "<group>"; };
3434
/* End PBXFileReference section */
3535

3636
/* Begin PBXFrameworksBuildPhase section */
@@ -44,16 +44,32 @@
4444
/* End PBXFrameworksBuildPhase section */
4545

4646
/* Begin PBXGroup section */
47+
CE929F072512151E008DDE8D /* examples */ = {
48+
isa = PBXGroup;
49+
children = (
50+
CE929F082512151E008DDE8D /* bench_10.h */,
51+
CE929F092512151E008DDE8D /* bench_6.h */,
52+
CE929F0A2512151E008DDE8D /* bench_n.h */,
53+
CE929F0B2512151E008DDE8D /* bench_pair_sort.h */,
54+
CE929F0C2512151E008DDE8D /* main.cpp */,
55+
CE929F0D2512151E008DDE8D /* timer.h */,
56+
);
57+
path = examples;
58+
sourceTree = "<group>";
59+
};
60+
CE929F0E2512151E008DDE8D /* include */ = {
61+
isa = PBXGroup;
62+
children = (
63+
CE929F0F2512151E008DDE8D /* static_sort.h */,
64+
);
65+
path = include;
66+
sourceTree = "<group>";
67+
};
4768
CEFDE9C61CA43A7800A66716 = {
4869
isa = PBXGroup;
4970
children = (
50-
CEFDE9DB1CA43F4A00A66716 /* bench_6.h */,
51-
CEFDE9DF1CA452E500A66716 /* bench_n.h */,
52-
CEFDE9E11CA47EC500A66716 /* bench_10.h */,
53-
CE2E5248249049CE0010CCC0 /* bench_pair_sort.h */,
54-
CEFDE9E01CA465F300A66716 /* timer.h */,
55-
CEFDE9DC1CA43F4A00A66716 /* main.cpp */,
56-
CEFDE9DD1CA43F4A00A66716 /* static_sort.h */,
71+
CE929F072512151E008DDE8D /* examples */,
72+
CE929F0E2512151E008DDE8D /* include */,
5773
CEFDE9D01CA43A7800A66716 /* Products */,
5874
);
5975
sourceTree = "<group>";
@@ -122,7 +138,7 @@
122138
isa = PBXSourcesBuildPhase;
123139
buildActionMask = 2147483647;
124140
files = (
125-
CEFDE9DE1CA43F4A00A66716 /* main.cpp in Sources */,
141+
CE929F102512151E008DDE8D /* main.cpp in Sources */,
126142
);
127143
runOnlyForDeploymentPostprocessing = 0;
128144
};
Binary file not shown.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)