Skip to content

Commit c866e68

Browse files
committed
Move files correctly + xcode ignore
1 parent 2b9799d commit c866e68

File tree

5 files changed

+23
-6
lines changed

5 files changed

+23
-6
lines changed

.gitignore

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Created by https://www.gitignore.io
2+
3+
### Xcode ###
4+
build/
5+
*.pbxuser
6+
!default.pbxuser
7+
*.mode1v3
8+
!default.mode1v3
9+
*.mode2v3
10+
!default.mode2v3
11+
*.perspectivev3
12+
!default.perspectivev3
13+
xcuserdata
14+
*.xccheckout
15+
*.moved-aside
16+
DerivedData
17+
*.xcuserstate

xcproj/xcproj

152 Bytes
Binary file not shown.

xcproj/xcproj.xcodeproj/project.pbxproj

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

99
/* Begin PBXBuildFile section */
10-
4F71D608E2B691F44F267F73 /* Xcproj+FileUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = 4F71DFC078F05F4B47C98305 /* Xcproj+FileUtils.m */; };
1110
8DD76F9A0486AA7600D96B5E /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 08FB7796FE84155DC02AAC07 /* main.m */; settings = {ATTRIBUTES = (); }; };
1211
8DD76F9C0486AA7600D96B5E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 08FB779EFE84155DC02AAC07 /* Foundation.framework */; };
12+
A0834B461B253C4C0000338B /* Xcproj+FileUtils.m in Sources */ = {isa = PBXBuildFile; fileRef = A0834B451B253C4C0000338B /* Xcproj+FileUtils.m */; };
1313
C215308619DBE040002524A7 /* XMLPlistDecoder.m in Sources */ = {isa = PBXBuildFile; fileRef = C215308519DBE040002524A7 /* XMLPlistDecoder.m */; };
1414
C269E98D17B3DCCC0099A0C5 /* dd_getopt_long-fbsd.m in Sources */ = {isa = PBXBuildFile; fileRef = C269E98317B3DCCC0099A0C5 /* dd_getopt_long-fbsd.m */; };
1515
C269E98E17B3DCCC0099A0C5 /* DDCliApplication.m in Sources */ = {isa = PBXBuildFile; fileRef = C269E98517B3DCCC0099A0C5 /* DDCliApplication.m */; };
@@ -25,9 +25,9 @@
2525
08FB7796FE84155DC02AAC07 /* main.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = main.m; path = Sources/main.m; sourceTree = "<group>"; };
2626
08FB779EFE84155DC02AAC07 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = /System/Library/Frameworks/Foundation.framework; sourceTree = "<absolute>"; };
2727
32A70AAB03705E1F00C91783 /* xcproj_Prefix.pch */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = xcproj_Prefix.pch; path = Sources/xcproj_Prefix.pch; sourceTree = "<group>"; };
28-
4F71D5B9A24F620C2593DF81 /* Xcproj+FileUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "Xcproj+FileUtils.h"; sourceTree = "<group>"; };
29-
4F71DFC078F05F4B47C98305 /* Xcproj+FileUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "Xcproj+FileUtils.m"; sourceTree = "<group>"; };
3028
8DD76FA10486AA7600D96B5E /* xcproj */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = xcproj; sourceTree = BUILT_PRODUCTS_DIR; };
29+
A0834B441B253C4C0000338B /* Xcproj+FileUtils.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "Xcproj+FileUtils.h"; path = "Sources/Xcproj+FileUtils.h"; sourceTree = "<group>"; };
30+
A0834B451B253C4C0000338B /* Xcproj+FileUtils.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "Xcproj+FileUtils.m"; path = "Sources/Xcproj+FileUtils.m"; sourceTree = "<group>"; };
3131
C215308419DBE040002524A7 /* XMLPlistDecoder.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = XMLPlistDecoder.h; path = Sources/XMLPlistDecoder.h; sourceTree = "<group>"; };
3232
C215308519DBE040002524A7 /* XMLPlistDecoder.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = XMLPlistDecoder.m; path = Sources/XMLPlistDecoder.m; sourceTree = "<group>"; };
3333
C269E98317B3DCCC0099A0C5 /* dd_getopt_long-fbsd.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = "dd_getopt_long-fbsd.m"; sourceTree = "<group>"; };
@@ -88,6 +88,8 @@
8888
08FB7795FE84155DC02AAC07 /* Sources */ = {
8989
isa = PBXGroup;
9090
children = (
91+
A0834B441B253C4C0000338B /* Xcproj+FileUtils.h */,
92+
A0834B451B253C4C0000338B /* Xcproj+FileUtils.m */,
9193
32A70AAB03705E1F00C91783 /* xcproj_Prefix.pch */,
9294
08FB7796FE84155DC02AAC07 /* main.m */,
9395
DA1DC00F10E59AED005A103B /* Xcproj.h */,
@@ -96,8 +98,6 @@
9698
DAFF25CB1303ECB100584E0E /* XCDUndocumentedChecker.m */,
9799
C215308419DBE040002524A7 /* XMLPlistDecoder.h */,
98100
C215308519DBE040002524A7 /* XMLPlistDecoder.m */,
99-
4F71DFC078F05F4B47C98305 /* Xcproj+FileUtils.m */,
100-
4F71D5B9A24F620C2593DF81 /* Xcproj+FileUtils.h */,
101101
);
102102
name = Sources;
103103
sourceTree = "<group>";
@@ -241,7 +241,7 @@
241241
C269E99117B3DCCC0099A0C5 /* DDGetoptLongParser.m in Sources */,
242242
DAFF25CC1303ECB100584E0E /* XCDUndocumentedChecker.m in Sources */,
243243
C269E98F17B3DCCC0099A0C5 /* DDCliParseException.m in Sources */,
244-
4F71D608E2B691F44F267F73 /* Xcproj+FileUtils.m in Sources */,
244+
A0834B461B253C4C0000338B /* Xcproj+FileUtils.m in Sources */,
245245
);
246246
runOnlyForDeploymentPostprocessing = 0;
247247
};

0 commit comments

Comments
 (0)