Browse Source

Initial commit

Thomas Buck 7 years ago
commit
8b8b921ca8
No account linked to committer's email address

+ 244
- 0
BlueTerm.xcodeproj/project.pbxproj View File

@@ -0,0 +1,244 @@
1
+// !$*UTF8*$!
2
+{
3
+	archiveVersion = 1;
4
+	classes = {
5
+	};
6
+	objectVersion = 46;
7
+	objects = {
8
+
9
+/* Begin PBXBuildFile section */
10
+		E9CDD7461EDCC9F4002FF7B8 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = E9CDD7451EDCC9F4002FF7B8 /* main.m */; };
11
+/* End PBXBuildFile section */
12
+
13
+/* Begin PBXCopyFilesBuildPhase section */
14
+		E9CDD7401EDCC9F4002FF7B8 /* CopyFiles */ = {
15
+			isa = PBXCopyFilesBuildPhase;
16
+			buildActionMask = 2147483647;
17
+			dstPath = /usr/share/man/man1/;
18
+			dstSubfolderSpec = 0;
19
+			files = (
20
+			);
21
+			runOnlyForDeploymentPostprocessing = 1;
22
+		};
23
+/* End PBXCopyFilesBuildPhase section */
24
+
25
+/* Begin PBXFileReference section */
26
+		E9CDD7421EDCC9F4002FF7B8 /* BlueTerm */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = BlueTerm; sourceTree = BUILT_PRODUCTS_DIR; };
27
+		E9CDD7451EDCC9F4002FF7B8 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
28
+/* End PBXFileReference section */
29
+
30
+/* Begin PBXFrameworksBuildPhase section */
31
+		E9CDD73F1EDCC9F4002FF7B8 /* Frameworks */ = {
32
+			isa = PBXFrameworksBuildPhase;
33
+			buildActionMask = 2147483647;
34
+			files = (
35
+			);
36
+			runOnlyForDeploymentPostprocessing = 0;
37
+		};
38
+/* End PBXFrameworksBuildPhase section */
39
+
40
+/* Begin PBXGroup section */
41
+		E9CDD7391EDCC9F4002FF7B8 = {
42
+			isa = PBXGroup;
43
+			children = (
44
+				E9CDD7441EDCC9F4002FF7B8 /* BlueTerm */,
45
+				E9CDD7431EDCC9F4002FF7B8 /* Products */,
46
+			);
47
+			sourceTree = "<group>";
48
+		};
49
+		E9CDD7431EDCC9F4002FF7B8 /* Products */ = {
50
+			isa = PBXGroup;
51
+			children = (
52
+				E9CDD7421EDCC9F4002FF7B8 /* BlueTerm */,
53
+			);
54
+			name = Products;
55
+			sourceTree = "<group>";
56
+		};
57
+		E9CDD7441EDCC9F4002FF7B8 /* BlueTerm */ = {
58
+			isa = PBXGroup;
59
+			children = (
60
+				E9CDD7451EDCC9F4002FF7B8 /* main.m */,
61
+			);
62
+			path = BlueTerm;
63
+			sourceTree = "<group>";
64
+		};
65
+/* End PBXGroup section */
66
+
67
+/* Begin PBXNativeTarget section */
68
+		E9CDD7411EDCC9F4002FF7B8 /* BlueTerm */ = {
69
+			isa = PBXNativeTarget;
70
+			buildConfigurationList = E9CDD7491EDCC9F4002FF7B8 /* Build configuration list for PBXNativeTarget "BlueTerm" */;
71
+			buildPhases = (
72
+				E9CDD73E1EDCC9F4002FF7B8 /* Sources */,
73
+				E9CDD73F1EDCC9F4002FF7B8 /* Frameworks */,
74
+				E9CDD7401EDCC9F4002FF7B8 /* CopyFiles */,
75
+			);
76
+			buildRules = (
77
+			);
78
+			dependencies = (
79
+			);
80
+			name = BlueTerm;
81
+			productName = BlueTerm;
82
+			productReference = E9CDD7421EDCC9F4002FF7B8 /* BlueTerm */;
83
+			productType = "com.apple.product-type.tool";
84
+		};
85
+/* End PBXNativeTarget section */
86
+
87
+/* Begin PBXProject section */
88
+		E9CDD73A1EDCC9F4002FF7B8 /* Project object */ = {
89
+			isa = PBXProject;
90
+			attributes = {
91
+				LastUpgradeCheck = 0720;
92
+				ORGANIZATIONNAME = "Thomas Buck";
93
+				TargetAttributes = {
94
+					E9CDD7411EDCC9F4002FF7B8 = {
95
+						CreatedOnToolsVersion = 7.2.1;
96
+					};
97
+				};
98
+			};
99
+			buildConfigurationList = E9CDD73D1EDCC9F4002FF7B8 /* Build configuration list for PBXProject "BlueTerm" */;
100
+			compatibilityVersion = "Xcode 3.2";
101
+			developmentRegion = English;
102
+			hasScannedForEncodings = 0;
103
+			knownRegions = (
104
+				en,
105
+			);
106
+			mainGroup = E9CDD7391EDCC9F4002FF7B8;
107
+			productRefGroup = E9CDD7431EDCC9F4002FF7B8 /* Products */;
108
+			projectDirPath = "";
109
+			projectRoot = "";
110
+			targets = (
111
+				E9CDD7411EDCC9F4002FF7B8 /* BlueTerm */,
112
+			);
113
+		};
114
+/* End PBXProject section */
115
+
116
+/* Begin PBXSourcesBuildPhase section */
117
+		E9CDD73E1EDCC9F4002FF7B8 /* Sources */ = {
118
+			isa = PBXSourcesBuildPhase;
119
+			buildActionMask = 2147483647;
120
+			files = (
121
+				E9CDD7461EDCC9F4002FF7B8 /* main.m in Sources */,
122
+			);
123
+			runOnlyForDeploymentPostprocessing = 0;
124
+		};
125
+/* End PBXSourcesBuildPhase section */
126
+
127
+/* Begin XCBuildConfiguration section */
128
+		E9CDD7471EDCC9F4002FF7B8 /* Debug */ = {
129
+			isa = XCBuildConfiguration;
130
+			buildSettings = {
131
+				ALWAYS_SEARCH_USER_PATHS = NO;
132
+				CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
133
+				CLANG_CXX_LIBRARY = "libc++";
134
+				CLANG_ENABLE_MODULES = YES;
135
+				CLANG_ENABLE_OBJC_ARC = YES;
136
+				CLANG_WARN_BOOL_CONVERSION = YES;
137
+				CLANG_WARN_CONSTANT_CONVERSION = YES;
138
+				CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
139
+				CLANG_WARN_EMPTY_BODY = YES;
140
+				CLANG_WARN_ENUM_CONVERSION = YES;
141
+				CLANG_WARN_INT_CONVERSION = YES;
142
+				CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
143
+				CLANG_WARN_UNREACHABLE_CODE = YES;
144
+				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
145
+				CODE_SIGN_IDENTITY = "-";
146
+				COPY_PHASE_STRIP = NO;
147
+				DEBUG_INFORMATION_FORMAT = dwarf;
148
+				ENABLE_STRICT_OBJC_MSGSEND = YES;
149
+				ENABLE_TESTABILITY = YES;
150
+				GCC_C_LANGUAGE_STANDARD = gnu99;
151
+				GCC_DYNAMIC_NO_PIC = NO;
152
+				GCC_NO_COMMON_BLOCKS = YES;
153
+				GCC_OPTIMIZATION_LEVEL = 0;
154
+				GCC_PREPROCESSOR_DEFINITIONS = (
155
+					"DEBUG=1",
156
+					"$(inherited)",
157
+				);
158
+				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
159
+				GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
160
+				GCC_WARN_UNDECLARED_SELECTOR = YES;
161
+				GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
162
+				GCC_WARN_UNUSED_FUNCTION = YES;
163
+				GCC_WARN_UNUSED_VARIABLE = YES;
164
+				MACOSX_DEPLOYMENT_TARGET = 10.10;
165
+				MTL_ENABLE_DEBUG_INFO = YES;
166
+				ONLY_ACTIVE_ARCH = YES;
167
+				SDKROOT = macosx;
168
+			};
169
+			name = Debug;
170
+		};
171
+		E9CDD7481EDCC9F4002FF7B8 /* Release */ = {
172
+			isa = XCBuildConfiguration;
173
+			buildSettings = {
174
+				ALWAYS_SEARCH_USER_PATHS = NO;
175
+				CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
176
+				CLANG_CXX_LIBRARY = "libc++";
177
+				CLANG_ENABLE_MODULES = YES;
178
+				CLANG_ENABLE_OBJC_ARC = YES;
179
+				CLANG_WARN_BOOL_CONVERSION = YES;
180
+				CLANG_WARN_CONSTANT_CONVERSION = YES;
181
+				CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
182
+				CLANG_WARN_EMPTY_BODY = YES;
183
+				CLANG_WARN_ENUM_CONVERSION = YES;
184
+				CLANG_WARN_INT_CONVERSION = YES;
185
+				CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
186
+				CLANG_WARN_UNREACHABLE_CODE = YES;
187
+				CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
188
+				CODE_SIGN_IDENTITY = "-";
189
+				COPY_PHASE_STRIP = NO;
190
+				DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
191
+				ENABLE_NS_ASSERTIONS = NO;
192
+				ENABLE_STRICT_OBJC_MSGSEND = YES;
193
+				GCC_C_LANGUAGE_STANDARD = gnu99;
194
+				GCC_NO_COMMON_BLOCKS = YES;
195
+				GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
196
+				GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
197
+				GCC_WARN_UNDECLARED_SELECTOR = YES;
198
+				GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
199
+				GCC_WARN_UNUSED_FUNCTION = YES;
200
+				GCC_WARN_UNUSED_VARIABLE = YES;
201
+				MACOSX_DEPLOYMENT_TARGET = 10.10;
202
+				MTL_ENABLE_DEBUG_INFO = NO;
203
+				SDKROOT = macosx;
204
+			};
205
+			name = Release;
206
+		};
207
+		E9CDD74A1EDCC9F4002FF7B8 /* Debug */ = {
208
+			isa = XCBuildConfiguration;
209
+			buildSettings = {
210
+				PRODUCT_NAME = "$(TARGET_NAME)";
211
+			};
212
+			name = Debug;
213
+		};
214
+		E9CDD74B1EDCC9F4002FF7B8 /* Release */ = {
215
+			isa = XCBuildConfiguration;
216
+			buildSettings = {
217
+				PRODUCT_NAME = "$(TARGET_NAME)";
218
+			};
219
+			name = Release;
220
+		};
221
+/* End XCBuildConfiguration section */
222
+
223
+/* Begin XCConfigurationList section */
224
+		E9CDD73D1EDCC9F4002FF7B8 /* Build configuration list for PBXProject "BlueTerm" */ = {
225
+			isa = XCConfigurationList;
226
+			buildConfigurations = (
227
+				E9CDD7471EDCC9F4002FF7B8 /* Debug */,
228
+				E9CDD7481EDCC9F4002FF7B8 /* Release */,
229
+			);
230
+			defaultConfigurationIsVisible = 0;
231
+			defaultConfigurationName = Release;
232
+		};
233
+		E9CDD7491EDCC9F4002FF7B8 /* Build configuration list for PBXNativeTarget "BlueTerm" */ = {
234
+			isa = XCConfigurationList;
235
+			buildConfigurations = (
236
+				E9CDD74A1EDCC9F4002FF7B8 /* Debug */,
237
+				E9CDD74B1EDCC9F4002FF7B8 /* Release */,
238
+			);
239
+			defaultConfigurationIsVisible = 0;
240
+		};
241
+/* End XCConfigurationList section */
242
+	};
243
+	rootObject = E9CDD73A1EDCC9F4002FF7B8 /* Project object */;
244
+}

+ 7
- 0
BlueTerm.xcodeproj/project.xcworkspace/contents.xcworkspacedata View File

@@ -0,0 +1,7 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<Workspace
3
+   version = "1.0">
4
+   <FileRef
5
+      location = "self:BlueTerm.xcodeproj">
6
+   </FileRef>
7
+</Workspace>

+ 46
- 0
BlueTerm.xcodeproj/xcuserdata/thomas.xcuserdatad/xcschemes/BlueTerm.xcscheme View File

@@ -0,0 +1,46 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<Scheme
3
+   LastUpgradeVersion = "0720"
4
+   version = "1.3">
5
+   <BuildAction
6
+      parallelizeBuildables = "YES"
7
+      buildImplicitDependencies = "YES">
8
+   </BuildAction>
9
+   <TestAction
10
+      buildConfiguration = "Debug"
11
+      selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
12
+      selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
13
+      shouldUseLaunchSchemeArgsEnv = "YES">
14
+      <Testables>
15
+      </Testables>
16
+      <AdditionalOptions>
17
+      </AdditionalOptions>
18
+   </TestAction>
19
+   <LaunchAction
20
+      buildConfiguration = "Debug"
21
+      selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
22
+      selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
23
+      launchStyle = "0"
24
+      useCustomWorkingDirectory = "NO"
25
+      ignoresPersistentStateOnLaunch = "NO"
26
+      debugDocumentVersioning = "YES"
27
+      debugServiceExtension = "internal"
28
+      allowLocationSimulation = "YES">
29
+      <AdditionalOptions>
30
+      </AdditionalOptions>
31
+   </LaunchAction>
32
+   <ProfileAction
33
+      buildConfiguration = "Release"
34
+      shouldUseLaunchSchemeArgsEnv = "YES"
35
+      savedToolIdentifier = ""
36
+      useCustomWorkingDirectory = "NO"
37
+      debugDocumentVersioning = "YES">
38
+   </ProfileAction>
39
+   <AnalyzeAction
40
+      buildConfiguration = "Debug">
41
+   </AnalyzeAction>
42
+   <ArchiveAction
43
+      buildConfiguration = "Release"
44
+      revealArchiveInOrganizer = "YES">
45
+   </ArchiveAction>
46
+</Scheme>

+ 22
- 0
BlueTerm.xcodeproj/xcuserdata/thomas.xcuserdatad/xcschemes/xcschememanagement.plist View File

@@ -0,0 +1,22 @@
1
+<?xml version="1.0" encoding="UTF-8"?>
2
+<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+<plist version="1.0">
4
+<dict>
5
+	<key>SchemeUserState</key>
6
+	<dict>
7
+		<key>BlueTerm.xcscheme</key>
8
+		<dict>
9
+			<key>orderHint</key>
10
+			<integer>0</integer>
11
+		</dict>
12
+	</dict>
13
+	<key>SuppressBuildableAutocreation</key>
14
+	<dict>
15
+		<key>E9CDD7411EDCC9F4002FF7B8</key>
16
+		<dict>
17
+			<key>primary</key>
18
+			<true/>
19
+		</dict>
20
+	</dict>
21
+</dict>
22
+</plist>

+ 17
- 0
BlueTerm/main.m View File

@@ -0,0 +1,17 @@
1
+//
2
+//  main.m
3
+//  BlueTerm
4
+//
5
+//  Created by Thomas Buck on 29.05.17.
6
+//  Copyright © 2017 Thomas Buck. All rights reserved.
7
+//
8
+
9
+#import <Foundation/Foundation.h>
10
+
11
+int main(int argc, const char * argv[]) {
12
+    @autoreleasepool {
13
+        // insert code here...
14
+        NSLog(@"Hello, World!");
15
+    }
16
+    return 0;
17
+}

Loading…
Cancel
Save