Skip to content

Commit

Permalink
Add some missing files to Xcode project
Browse files Browse the repository at this point in the history
  • Loading branch information
stek29 committed Aug 6, 2019
1 parent f59df7c commit 32e57ca
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions iSH.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@
objects = {

/* Begin PBXBuildFile section */
650B335C22E9E46A00B4C03E /* mem.c in Sources */ = {isa = PBXBuildFile; fileRef = 650B335A22E9E46A00B4C03E /* mem.c */; };
650B335F22E9EF9C00B4C03E /* proc.c in Sources */ = {isa = PBXBuildFile; fileRef = 650B335D22E9EF9B00B4C03E /* proc.c */; };
650B336922E9F0B500B4C03E /* pid.c in Sources */ = {isa = PBXBuildFile; fileRef = 650B336622E9F0B500B4C03E /* pid.c */; };
650B336A22E9F0B500B4C03E /* entry.c in Sources */ = {isa = PBXBuildFile; fileRef = 650B336722E9F0B500B4C03E /* entry.c */; };
650B336B22E9F0B500B4C03E /* root.c in Sources */ = {isa = PBXBuildFile; fileRef = 650B336822E9F0B500B4C03E /* root.c */; };
8632A7BF219A59FB00F02325 /* UserPreferences.m in Sources */ = {isa = PBXBuildFile; fileRef = 8632A7BE219A59FB00F02325 /* UserPreferences.m */; };
9A28E4EA219A8B670073D200 /* AppearanceViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = 9A28E4E9219A8B670073D200 /* AppearanceViewController.m */; };
BB0FC5921F980A6C00803272 /* Terminal.m in Sources */ = {isa = PBXBuildFile; fileRef = BB0FC5911F980A6B00803272 /* Terminal.m */; };
Expand Down Expand Up @@ -85,6 +90,13 @@
/* End PBXCopyFilesBuildPhase section */

/* Begin PBXFileReference section */
650B335A22E9E46A00B4C03E /* mem.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = mem.c; sourceTree = "<group>"; tabWidth = 4; };
650B335B22E9E46A00B4C03E /* mem.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = mem.h; sourceTree = "<group>"; tabWidth = 4; };
650B335D22E9EF9B00B4C03E /* proc.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = proc.c; sourceTree = "<group>"; };
650B335E22E9EF9B00B4C03E /* proc.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = proc.h; sourceTree = "<group>"; };
650B336622E9F0B500B4C03E /* pid.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = pid.c; sourceTree = "<group>"; };
650B336722E9F0B500B4C03E /* entry.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = entry.c; sourceTree = "<group>"; };
650B336822E9F0B500B4C03E /* root.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; path = root.c; sourceTree = "<group>"; };
8632A7BD219A59FB00F02325 /* UserPreferences.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = UserPreferences.h; sourceTree = "<group>"; };
8632A7BE219A59FB00F02325 /* UserPreferences.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = UserPreferences.m; sourceTree = "<group>"; };
9A28E4E8219A8B670073D200 /* AppearanceViewController.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppearanceViewController.h; sourceTree = "<group>"; };
Expand Down Expand Up @@ -287,6 +299,16 @@
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
650B336522E9F09F00B4C03E /* proc */ = {
isa = PBXGroup;
children = (
650B336722E9F0B500B4C03E /* entry.c */,
650B336622E9F0B500B4C03E /* pid.c */,
650B336822E9F0B500B4C03E /* root.c */,
);
path = proc;
sourceTree = "<group>";
};
BB18B27F1F97F2590059FCD8 /* Scripts */ = {
isa = PBXGroup;
children = (
Expand Down Expand Up @@ -467,6 +489,11 @@
BB7D936A2087C2890008DA78 /* fs */ = {
isa = PBXGroup;
children = (
650B336522E9F09F00B4C03E /* proc */,
650B335D22E9EF9B00B4C03E /* proc.c */,
650B335E22E9EF9B00B4C03E /* proc.h */,
650B335A22E9E46A00B4C03E /* mem.c */,
650B335B22E9E46A00B4C03E /* mem.h */,
BB7D936B2087C2890008DA78 /* adhoc.c */,
BB7D936C2087C2890008DA78 /* dev.c */,
BB7D936D2087C2890008DA78 /* dev.h */,
Expand Down Expand Up @@ -889,10 +916,12 @@
buildActionMask = 2147483647;
files = (
9A28E4EA219A8B670073D200 /* AppearanceViewController.m in Sources */,
650B336A22E9F0B500B4C03E /* entry.c in Sources */,
BB792B581F96D90D00FFB7A4 /* TerminalViewController.m in Sources */,
BB78AB2B1FAD22440013E782 /* TerminalView.m in Sources */,
BBFB557621586F9200DFE6DE /* DismissSegue.m in Sources */,
BB455E111FB37F6600AFB48B /* DelayedUITask.m in Sources */,
650B335C22E9E46A00B4C03E /* mem.c in Sources */,
BB0FC5921F980A6C00803272 /* Terminal.m in Sources */,
BB82A7FD21B4C2E8006AA5FD /* CapsLockMappingViewController.m in Sources */,
8632A7BF219A59FB00F02325 /* UserPreferences.m in Sources */,
Expand All @@ -901,6 +930,9 @@
BBFB557C215878C600DFE6DE /* UIApplication+OpenURL.m in Sources */,
BBFB5579215876CD00DFE6DE /* AboutViewController.m in Sources */,
BBFB557121586C4800DFE6DE /* UIViewController+Back.m in Sources */,
650B336B22E9F0B500B4C03E /* root.c in Sources */,
650B335F22E9EF9C00B4C03E /* proc.c in Sources */,
650B336922E9F0B500B4C03E /* pid.c in Sources */,
BBFB558021587B6800DFE6DE /* ArrowBarButton.m in Sources */,
BB792B551F96D90D00FFB7A4 /* AppDelegate.m in Sources */,
);
Expand Down

0 comments on commit 32e57ca

Please sign in to comment.