Skip to content

Commit 4aabd6a

Browse files
fix for submodule bug raised by useless .git files
1 parent 83c3a63 commit 4aabd6a

File tree

93 files changed

+6653
-13
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

93 files changed

+6653
-13
lines changed
Lines changed: 273 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,273 @@
1+
// !$*UTF8*$!
2+
{
3+
archiveVersion = 1;
4+
classes = {
5+
};
6+
objectVersion = 46;
7+
objects = {
8+
9+
/* Begin PBXBuildFile section */
10+
DDA34ECB1E80C88500649604 /* main.c in Sources */ = {isa = PBXBuildFile; fileRef = DDA34ECA1E80C88500649604 /* main.c */; };
11+
DDA34ED41E80C97000649604 /* GLUT.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DDA34ED21E80C97000649604 /* GLUT.framework */; };
12+
DDA34ED51E80C97000649604 /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = DDA34ED31E80C97000649604 /* OpenGL.framework */; };
13+
/* End PBXBuildFile section */
14+
15+
/* Begin PBXCopyFilesBuildPhase section */
16+
DDA34EC51E80C88500649604 /* CopyFiles */ = {
17+
isa = PBXCopyFilesBuildPhase;
18+
buildActionMask = 2147483647;
19+
dstPath = /usr/share/man/man1/;
20+
dstSubfolderSpec = 0;
21+
files = (
22+
);
23+
runOnlyForDeploymentPostprocessing = 1;
24+
};
25+
/* End PBXCopyFilesBuildPhase section */
26+
27+
/* Begin PBXFileReference section */
28+
DDA34EC71E80C88500649604 /* Prog03 */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; path = Prog03; sourceTree = BUILT_PRODUCTS_DIR; };
29+
DDA34ECA1E80C88500649604 /* main.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; path = main.c; sourceTree = "<group>"; };
30+
DDA34ED21E80C97000649604 /* GLUT.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = GLUT.framework; path = System/Library/Frameworks/GLUT.framework; sourceTree = SDKROOT; };
31+
DDA34ED31E80C97000649604 /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = OpenGL.framework; path = System/Library/Frameworks/OpenGL.framework; sourceTree = SDKROOT; };
32+
/* End PBXFileReference section */
33+
34+
/* Begin PBXFrameworksBuildPhase section */
35+
DDA34EC41E80C88500649604 /* Frameworks */ = {
36+
isa = PBXFrameworksBuildPhase;
37+
buildActionMask = 2147483647;
38+
files = (
39+
DDA34ED41E80C97000649604 /* GLUT.framework in Frameworks */,
40+
DDA34ED51E80C97000649604 /* OpenGL.framework in Frameworks */,
41+
);
42+
runOnlyForDeploymentPostprocessing = 0;
43+
};
44+
/* End PBXFrameworksBuildPhase section */
45+
46+
/* Begin PBXGroup section */
47+
DDA34EBE1E80C88500649604 = {
48+
isa = PBXGroup;
49+
children = (
50+
DDA34EC91E80C88500649604 /* Prog03 */,
51+
DDA34EC81E80C88500649604 /* Products */,
52+
DDA34ED11E80C97000649604 /* Frameworks */,
53+
);
54+
sourceTree = "<group>";
55+
};
56+
DDA34EC81E80C88500649604 /* Products */ = {
57+
isa = PBXGroup;
58+
children = (
59+
DDA34EC71E80C88500649604 /* Prog03 */,
60+
);
61+
name = Products;
62+
sourceTree = "<group>";
63+
};
64+
DDA34EC91E80C88500649604 /* Prog03 */ = {
65+
isa = PBXGroup;
66+
children = (
67+
DDA34ECA1E80C88500649604 /* main.c */,
68+
);
69+
path = Prog03;
70+
sourceTree = "<group>";
71+
};
72+
DDA34ED11E80C97000649604 /* Frameworks */ = {
73+
isa = PBXGroup;
74+
children = (
75+
DDA34ED21E80C97000649604 /* GLUT.framework */,
76+
DDA34ED31E80C97000649604 /* OpenGL.framework */,
77+
);
78+
name = Frameworks;
79+
sourceTree = "<group>";
80+
};
81+
/* End PBXGroup section */
82+
83+
/* Begin PBXNativeTarget section */
84+
DDA34EC61E80C88500649604 /* Prog03 */ = {
85+
isa = PBXNativeTarget;
86+
buildConfigurationList = DDA34ECE1E80C88500649604 /* Build configuration list for PBXNativeTarget "Prog03" */;
87+
buildPhases = (
88+
DDA34EC31E80C88500649604 /* Sources */,
89+
DDA34EC41E80C88500649604 /* Frameworks */,
90+
DDA34EC51E80C88500649604 /* CopyFiles */,
91+
);
92+
buildRules = (
93+
);
94+
dependencies = (
95+
);
96+
name = Prog03;
97+
productName = Prog03;
98+
productReference = DDA34EC71E80C88500649604 /* Prog03 */;
99+
productType = "com.apple.product-type.tool";
100+
};
101+
/* End PBXNativeTarget section */
102+
103+
/* Begin PBXProject section */
104+
DDA34EBF1E80C88500649604 /* Project object */ = {
105+
isa = PBXProject;
106+
attributes = {
107+
LastUpgradeCheck = 0820;
108+
ORGANIZATIONNAME = Fallingstar;
109+
TargetAttributes = {
110+
DDA34EC61E80C88500649604 = {
111+
CreatedOnToolsVersion = 8.2.1;
112+
DevelopmentTeam = YD9WLKVCHU;
113+
ProvisioningStyle = Automatic;
114+
};
115+
};
116+
};
117+
buildConfigurationList = DDA34EC21E80C88500649604 /* Build configuration list for PBXProject "Prog03" */;
118+
compatibilityVersion = "Xcode 3.2";
119+
developmentRegion = English;
120+
hasScannedForEncodings = 0;
121+
knownRegions = (
122+
en,
123+
);
124+
mainGroup = DDA34EBE1E80C88500649604;
125+
productRefGroup = DDA34EC81E80C88500649604 /* Products */;
126+
projectDirPath = "";
127+
projectRoot = "";
128+
targets = (
129+
DDA34EC61E80C88500649604 /* Prog03 */,
130+
);
131+
};
132+
/* End PBXProject section */
133+
134+
/* Begin PBXSourcesBuildPhase section */
135+
DDA34EC31E80C88500649604 /* Sources */ = {
136+
isa = PBXSourcesBuildPhase;
137+
buildActionMask = 2147483647;
138+
files = (
139+
DDA34ECB1E80C88500649604 /* main.c in Sources */,
140+
);
141+
runOnlyForDeploymentPostprocessing = 0;
142+
};
143+
/* End PBXSourcesBuildPhase section */
144+
145+
/* Begin XCBuildConfiguration section */
146+
DDA34ECC1E80C88500649604 /* Debug */ = {
147+
isa = XCBuildConfiguration;
148+
buildSettings = {
149+
ALWAYS_SEARCH_USER_PATHS = NO;
150+
CLANG_ANALYZER_NONNULL = YES;
151+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
152+
CLANG_CXX_LIBRARY = "libc++";
153+
CLANG_ENABLE_MODULES = YES;
154+
CLANG_ENABLE_OBJC_ARC = YES;
155+
CLANG_WARN_BOOL_CONVERSION = YES;
156+
CLANG_WARN_CONSTANT_CONVERSION = YES;
157+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
158+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
159+
CLANG_WARN_EMPTY_BODY = YES;
160+
CLANG_WARN_ENUM_CONVERSION = YES;
161+
CLANG_WARN_INFINITE_RECURSION = YES;
162+
CLANG_WARN_INT_CONVERSION = YES;
163+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
164+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
165+
CLANG_WARN_UNREACHABLE_CODE = YES;
166+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
167+
CODE_SIGN_IDENTITY = "-";
168+
COPY_PHASE_STRIP = NO;
169+
DEBUG_INFORMATION_FORMAT = dwarf;
170+
ENABLE_STRICT_OBJC_MSGSEND = YES;
171+
ENABLE_TESTABILITY = YES;
172+
GCC_C_LANGUAGE_STANDARD = gnu99;
173+
GCC_DYNAMIC_NO_PIC = NO;
174+
GCC_NO_COMMON_BLOCKS = YES;
175+
GCC_OPTIMIZATION_LEVEL = 0;
176+
GCC_PREPROCESSOR_DEFINITIONS = (
177+
"DEBUG=1",
178+
"$(inherited)",
179+
);
180+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
181+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
182+
GCC_WARN_UNDECLARED_SELECTOR = YES;
183+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
184+
GCC_WARN_UNUSED_FUNCTION = YES;
185+
GCC_WARN_UNUSED_VARIABLE = YES;
186+
MACOSX_DEPLOYMENT_TARGET = 10.12;
187+
MTL_ENABLE_DEBUG_INFO = YES;
188+
ONLY_ACTIVE_ARCH = YES;
189+
SDKROOT = macosx;
190+
};
191+
name = Debug;
192+
};
193+
DDA34ECD1E80C88500649604 /* Release */ = {
194+
isa = XCBuildConfiguration;
195+
buildSettings = {
196+
ALWAYS_SEARCH_USER_PATHS = NO;
197+
CLANG_ANALYZER_NONNULL = YES;
198+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
199+
CLANG_CXX_LIBRARY = "libc++";
200+
CLANG_ENABLE_MODULES = YES;
201+
CLANG_ENABLE_OBJC_ARC = YES;
202+
CLANG_WARN_BOOL_CONVERSION = YES;
203+
CLANG_WARN_CONSTANT_CONVERSION = YES;
204+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
205+
CLANG_WARN_DOCUMENTATION_COMMENTS = YES;
206+
CLANG_WARN_EMPTY_BODY = YES;
207+
CLANG_WARN_ENUM_CONVERSION = YES;
208+
CLANG_WARN_INFINITE_RECURSION = YES;
209+
CLANG_WARN_INT_CONVERSION = YES;
210+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
211+
CLANG_WARN_SUSPICIOUS_MOVE = YES;
212+
CLANG_WARN_UNREACHABLE_CODE = YES;
213+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
214+
CODE_SIGN_IDENTITY = "-";
215+
COPY_PHASE_STRIP = NO;
216+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
217+
ENABLE_NS_ASSERTIONS = NO;
218+
ENABLE_STRICT_OBJC_MSGSEND = YES;
219+
GCC_C_LANGUAGE_STANDARD = gnu99;
220+
GCC_NO_COMMON_BLOCKS = YES;
221+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
222+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
223+
GCC_WARN_UNDECLARED_SELECTOR = YES;
224+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
225+
GCC_WARN_UNUSED_FUNCTION = YES;
226+
GCC_WARN_UNUSED_VARIABLE = YES;
227+
MACOSX_DEPLOYMENT_TARGET = 10.12;
228+
MTL_ENABLE_DEBUG_INFO = NO;
229+
SDKROOT = macosx;
230+
};
231+
name = Release;
232+
};
233+
DDA34ECF1E80C88500649604 /* Debug */ = {
234+
isa = XCBuildConfiguration;
235+
buildSettings = {
236+
DEVELOPMENT_TEAM = YD9WLKVCHU;
237+
PRODUCT_NAME = "$(TARGET_NAME)";
238+
};
239+
name = Debug;
240+
};
241+
DDA34ED01E80C88500649604 /* Release */ = {
242+
isa = XCBuildConfiguration;
243+
buildSettings = {
244+
DEVELOPMENT_TEAM = YD9WLKVCHU;
245+
PRODUCT_NAME = "$(TARGET_NAME)";
246+
};
247+
name = Release;
248+
};
249+
/* End XCBuildConfiguration section */
250+
251+
/* Begin XCConfigurationList section */
252+
DDA34EC21E80C88500649604 /* Build configuration list for PBXProject "Prog03" */ = {
253+
isa = XCConfigurationList;
254+
buildConfigurations = (
255+
DDA34ECC1E80C88500649604 /* Debug */,
256+
DDA34ECD1E80C88500649604 /* Release */,
257+
);
258+
defaultConfigurationIsVisible = 0;
259+
defaultConfigurationName = Release;
260+
};
261+
DDA34ECE1E80C88500649604 /* Build configuration list for PBXNativeTarget "Prog03" */ = {
262+
isa = XCConfigurationList;
263+
buildConfigurations = (
264+
DDA34ECF1E80C88500649604 /* Debug */,
265+
DDA34ED01E80C88500649604 /* Release */,
266+
);
267+
defaultConfigurationIsVisible = 0;
268+
defaultConfigurationName = Release;
269+
};
270+
/* End XCConfigurationList section */
271+
};
272+
rootObject = DDA34EBF1E80C88500649604 /* Project object */;
273+
}

Prog 03/Prog03.xcodeproj/project.xcworkspace/contents.xcworkspacedata

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<Scheme
3+
LastUpgradeVersion = "0820"
4+
version = "1.3">
5+
<BuildAction
6+
parallelizeBuildables = "YES"
7+
buildImplicitDependencies = "YES">
8+
<BuildActionEntries>
9+
<BuildActionEntry
10+
buildForTesting = "YES"
11+
buildForRunning = "YES"
12+
buildForProfiling = "YES"
13+
buildForArchiving = "YES"
14+
buildForAnalyzing = "YES">
15+
<BuildableReference
16+
BuildableIdentifier = "primary"
17+
BlueprintIdentifier = "DDA34EC61E80C88500649604"
18+
BuildableName = "Prog03"
19+
BlueprintName = "Prog03"
20+
ReferencedContainer = "container:Prog03.xcodeproj">
21+
</BuildableReference>
22+
</BuildActionEntry>
23+
</BuildActionEntries>
24+
</BuildAction>
25+
<TestAction
26+
buildConfiguration = "Debug"
27+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
28+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29+
shouldUseLaunchSchemeArgsEnv = "YES">
30+
<Testables>
31+
</Testables>
32+
<MacroExpansion>
33+
<BuildableReference
34+
BuildableIdentifier = "primary"
35+
BlueprintIdentifier = "DDA34EC61E80C88500649604"
36+
BuildableName = "Prog03"
37+
BlueprintName = "Prog03"
38+
ReferencedContainer = "container:Prog03.xcodeproj">
39+
</BuildableReference>
40+
</MacroExpansion>
41+
<AdditionalOptions>
42+
</AdditionalOptions>
43+
</TestAction>
44+
<LaunchAction
45+
buildConfiguration = "Debug"
46+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
47+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
48+
launchStyle = "0"
49+
useCustomWorkingDirectory = "NO"
50+
ignoresPersistentStateOnLaunch = "NO"
51+
debugDocumentVersioning = "YES"
52+
debugServiceExtension = "internal"
53+
allowLocationSimulation = "YES">
54+
<BuildableProductRunnable
55+
runnableDebuggingMode = "0">
56+
<BuildableReference
57+
BuildableIdentifier = "primary"
58+
BlueprintIdentifier = "DDA34EC61E80C88500649604"
59+
BuildableName = "Prog03"
60+
BlueprintName = "Prog03"
61+
ReferencedContainer = "container:Prog03.xcodeproj">
62+
</BuildableReference>
63+
</BuildableProductRunnable>
64+
<AdditionalOptions>
65+
</AdditionalOptions>
66+
</LaunchAction>
67+
<ProfileAction
68+
buildConfiguration = "Release"
69+
shouldUseLaunchSchemeArgsEnv = "YES"
70+
savedToolIdentifier = ""
71+
useCustomWorkingDirectory = "NO"
72+
debugDocumentVersioning = "YES">
73+
<BuildableProductRunnable
74+
runnableDebuggingMode = "0">
75+
<BuildableReference
76+
BuildableIdentifier = "primary"
77+
BlueprintIdentifier = "DDA34EC61E80C88500649604"
78+
BuildableName = "Prog03"
79+
BlueprintName = "Prog03"
80+
ReferencedContainer = "container:Prog03.xcodeproj">
81+
</BuildableReference>
82+
</BuildableProductRunnable>
83+
</ProfileAction>
84+
<AnalyzeAction
85+
buildConfiguration = "Debug">
86+
</AnalyzeAction>
87+
<ArchiveAction
88+
buildConfiguration = "Release"
89+
revealArchiveInOrganizer = "YES">
90+
</ArchiveAction>
91+
</Scheme>
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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>Prog03.xcscheme</key>
8+
<dict>
9+
<key>orderHint</key>
10+
<integer>0</integer>
11+
</dict>
12+
</dict>
13+
<key>SuppressBuildableAutocreation</key>
14+
<dict>
15+
<key>DDA34EC61E80C88500649604</key>
16+
<dict>
17+
<key>primary</key>
18+
<true/>
19+
</dict>
20+
</dict>
21+
</dict>
22+
</plist>

0 commit comments

Comments
 (0)