mirror of
https://github.com/libsdl-org/SDL.git
synced 2025-06-03 02:17:39 +00:00
Fixed crash if initialization of EGL failed but was tried again later.
The internal function SDL_EGL_LoadLibrary() did not delete and remove a mostly uninitialized data structure if loading the library first failed. A later try to use EGL then skipped initialization and assumed it was previously successful because the data structure now already existed. This led to at least one crash in the internal function SDL_EGL_ChooseConfig() because a NULL pointer was dereferenced to make a call to eglBindAPI().
This commit is contained in:
commit
0e45984fa0
1596 changed files with 468120 additions and 0 deletions
1231
premake/Xcode/Xcode3/SDL2/SDL2.xcodeproj/project.pbxproj
Executable file
1231
premake/Xcode/Xcode3/SDL2/SDL2.xcodeproj/project.pbxproj
Executable file
File diff suppressed because it is too large
Load diff
323
premake/Xcode/Xcode3/SDL2main/SDL2main.xcodeproj/project.pbxproj
Executable file
323
premake/Xcode/Xcode3/SDL2main/SDL2main.xcodeproj/project.pbxproj
Executable file
|
@ -0,0 +1,323 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 45;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
7C6F655C3400039274C60CE8 /* SDL_dummy_main.c in Sources */ = {isa = PBXBuildFile; fileRef = 26C4436469AA4D7A0F7C1DFD /* SDL_dummy_main.c */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
26C4436469AA4D7A0F7C1DFD /* SDL_dummy_main.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "SDL_dummy_main.c"; path = "../../../../src/main/dummy/SDL_dummy_main.c"; sourceTree = "<group>"; };
|
||||
58DC62993160374E09FF7AD6 /* libSDL2main.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libSDL2main.a"; path = "libSDL2main.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
21963BE338963B81309D4E7A /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
608409A47F473CA5269D156D /* SDL2main */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
43645C8537AA27FA2F2F3BDD /* src */,
|
||||
69F4412F1D6557483C505475 /* Products */,
|
||||
);
|
||||
name = "SDL2main";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
43645C8537AA27FA2F2F3BDD /* src */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
31FB051624A240B6101F10A4 /* main */,
|
||||
);
|
||||
name = "src";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
31FB051624A240B6101F10A4 /* main */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
1AA63C577EFC727433BD4743 /* dummy */,
|
||||
);
|
||||
name = "main";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
1AA63C577EFC727433BD4743 /* dummy */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
26C4436469AA4D7A0F7C1DFD /* SDL_dummy_main.c */,
|
||||
);
|
||||
name = "dummy";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
69F4412F1D6557483C505475 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
58DC62993160374E09FF7AD6 /* libSDL2main.a */,
|
||||
);
|
||||
name = "Products";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
0E7126A94A11494963D3548B /* SDL2main */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 066A29C00B877F83230951D3 /* Build configuration list for PBXNativeTarget "SDL2main" */;
|
||||
buildPhases = (
|
||||
2FF90B8D051E2574710B253A /* Resources */,
|
||||
215446A6532346FA6D1F2C8C /* Sources */,
|
||||
21963BE338963B81309D4E7A /* Frameworks */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
);
|
||||
name = "SDL2main";
|
||||
productName = "SDL2main";
|
||||
productReference = 58DC62993160374E09FF7AD6 /* libSDL2main.a */;
|
||||
productType = "com.apple.product-type.library.static";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
08FB7793FE84155DC02AAC07 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
buildConfigurationList = 1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "SDL2main" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
hasScannedForEncodings = 1;
|
||||
mainGroup = 608409A47F473CA5269D156D /* SDL2main */;
|
||||
projectDirPath = "";
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
0E7126A94A11494963D3548B /* libSDL2main.a */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
2FF90B8D051E2574710B253A /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
215446A6532346FA6D1F2C8C /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
7C6F655C3400039274C60CE8 /* SDL_dummy_main.c in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXVariantGroup section */
|
||||
/* End PBXVariantGroup section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
510953B45C415358368511E1 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/lib;
|
||||
PRODUCT_NAME = "SDL2main";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
16D675B01A7317CD3B8D5FE5 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/lib;
|
||||
PRODUCT_NAME = "SDL2main";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
76C85F4810AE2D6230A80EF9 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/lib;
|
||||
PRODUCT_NAME = "SDL2main";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
6786373D26612E5222AC01B1 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/lib;
|
||||
PRODUCT_NAME = "SDL2main";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
57CB0CB34D9E521A60B061AC /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"..",
|
||||
"../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
44C96A8A3A1153C9612956EB /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"..",
|
||||
"../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
0AF04773722D251F47E85CD4 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"..",
|
||||
"../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
328D4CB71647274B61221D5D /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"..",
|
||||
"../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
066A29C00B877F83230951D3 /* Build configuration list for PBXNativeTarget "libSDL2main.a" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
510953B45C415358368511E1 /* Debug Universal */,
|
||||
16D675B01A7317CD3B8D5FE5 /* Debug Native */,
|
||||
76C85F4810AE2D6230A80EF9 /* Release Universal */,
|
||||
6786373D26612E5222AC01B1 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "SDL2main" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
57CB0CB34D9E521A60B061AC /* Debug Universal */,
|
||||
44C96A8A3A1153C9612956EB /* Debug Native */,
|
||||
0AF04773722D251F47E85CD4 /* Release Universal */,
|
||||
328D4CB71647274B61221D5D /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
|
||||
};
|
||||
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
|
||||
}
|
520
premake/Xcode/Xcode3/SDL2test/SDL2test.xcodeproj/project.pbxproj
Executable file
520
premake/Xcode/Xcode3/SDL2test/SDL2test.xcodeproj/project.pbxproj
Executable file
|
@ -0,0 +1,520 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 45;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
337D79CE5C6E740E7845219E /* SDL_test_assert.c in Sources */ = {isa = PBXBuildFile; fileRef = 64702E4E1458346C45853388 /* SDL_test_assert.c */; };
|
||||
0D1D797B22CC02F330FF5E47 /* SDL_test_common.c in Sources */ = {isa = PBXBuildFile; fileRef = 49A239233C6C6CA56CE74C48 /* SDL_test_common.c */; };
|
||||
1327749E357953A70CCF170A /* SDL_test_compare.c in Sources */ = {isa = PBXBuildFile; fileRef = 2CD224BD127B6FAC31FB648B /* SDL_test_compare.c */; };
|
||||
5BA46CE023E7234071C61356 /* SDL_test_crc32.c in Sources */ = {isa = PBXBuildFile; fileRef = 324A22B47C420DDB457464A4 /* SDL_test_crc32.c */; };
|
||||
35EF0E232141409B16135264 /* SDL_test_font.c in Sources */ = {isa = PBXBuildFile; fileRef = 7C134A0D34FC4D84557A7740 /* SDL_test_font.c */; };
|
||||
24FC39DE3EDC7E2810DE1A63 /* SDL_test_fuzzer.c in Sources */ = {isa = PBXBuildFile; fileRef = 298B79602BB7243F2DC918CC /* SDL_test_fuzzer.c */; };
|
||||
17300EC9649122EC74172668 /* SDL_test_harness.c in Sources */ = {isa = PBXBuildFile; fileRef = 10E1293A4A1A080255541B1F /* SDL_test_harness.c */; };
|
||||
3271353414A709102AEC727C /* SDL_test_imageBlit.c in Sources */ = {isa = PBXBuildFile; fileRef = 3473299674511A515EC85B18 /* SDL_test_imageBlit.c */; };
|
||||
6F86057B520C152A35441188 /* SDL_test_imageBlitBlend.c in Sources */ = {isa = PBXBuildFile; fileRef = 46D4392C1C2A2D21746004B8 /* SDL_test_imageBlitBlend.c */; };
|
||||
54B811C75417488052B86ACB /* SDL_test_imageFace.c in Sources */ = {isa = PBXBuildFile; fileRef = 02C0451848954C585F967106 /* SDL_test_imageFace.c */; };
|
||||
30DD2C017D1C74A7192E20FD /* SDL_test_imagePrimitives.c in Sources */ = {isa = PBXBuildFile; fileRef = 3F9A3A9453A870E641EC17FE /* SDL_test_imagePrimitives.c */; };
|
||||
41C97B2F609370172B895949 /* SDL_test_imagePrimitivesBlend.c in Sources */ = {isa = PBXBuildFile; fileRef = 69340FD05C9810932D5B3DA7 /* SDL_test_imagePrimitivesBlend.c */; };
|
||||
7A0D0AEA2B651F1557DE60A0 /* SDL_test_log.c in Sources */ = {isa = PBXBuildFile; fileRef = 50F457701A661F5C56DD6806 /* SDL_test_log.c */; };
|
||||
33CD7CD04DFE6AE920702DA3 /* SDL_test_md5.c in Sources */ = {isa = PBXBuildFile; fileRef = 631451F96D09797A39395338 /* SDL_test_md5.c */; };
|
||||
782955367C837DBE79096716 /* SDL_test_random.c in Sources */ = {isa = PBXBuildFile; fileRef = 30A82713021216C43C8619EC /* SDL_test_random.c */; };
|
||||
445F64FC7ADA3EBA30845620 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7E114BF405C61A49375F6B9F /* AudioToolbox.framework */; };
|
||||
628405F619B7693533F272CA /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5B96593D519A75EB2A392F97 /* AudioUnit.framework */; };
|
||||
079374543BC5361C0E1C0F2C /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 45F83E8C66185B825C3B2F22 /* Cocoa.framework */; };
|
||||
5AD0424A300F69DE2BBC4BC8 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 390F301014294D505E6811AA /* CoreAudio.framework */; };
|
||||
5D1A13F94F9966E9571B3C91 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C622BCF3FDE1F79421C672B /* IOKit.framework */; };
|
||||
26C240F07CC4571159B3246F /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 762D124313B64A3B6DE020FA /* Carbon.framework */; };
|
||||
36C219D71FEC743174BD4B24 /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0DAE522C524806641A083AEB /* ForceFeedback.framework */; };
|
||||
779B1E6F2FF24FF047276D63 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4BD07856726B7C7E5D950CE8 /* CoreFoundation.framework */; };
|
||||
4CFD2303559549CC7D321ACE /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C5049651C43767C030361EC /* OpenGL.framework */; };
|
||||
66772CFF530D13744A817F94 /* libSDL2main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B6D31FD16317046144826F4 /* libSDL2main.a */; };
|
||||
361A737046B91D3D2B122E80 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6EF4020950DF15C7645540BE /* libSDL2.a */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
4256279152F56A071E0B1818 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 2586308C446C1C7A1D8D1F44 /* SDL2main.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 58DC62993160374E09FF7AD6;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
543772357FCE478840DB05E1 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 2586308C446C1C7A1D8D1F44 /* SDL2main.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 0E7126A94A11494963D3548B;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
15D75AF543BC727911CB4C32 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 7524156959DC362020BE45D2 /* SDL2.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 07D004B11E733F1F0EA93105;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
008B326E705E69EC1A0B00B4 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 7524156959DC362020BE45D2 /* SDL2.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 58C10ED14175754444033E0E;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
64702E4E1458346C45853388 /* SDL_test_assert.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "SDL_test_assert.c"; path = "../../../../src/test/SDL_test_assert.c"; sourceTree = "<group>"; };
|
||||
49A239233C6C6CA56CE74C48 /* SDL_test_common.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "SDL_test_common.c"; path = "../../../../src/test/SDL_test_common.c"; sourceTree = "<group>"; };
|
||||
2CD224BD127B6FAC31FB648B /* SDL_test_compare.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "SDL_test_compare.c"; path = "../../../../src/test/SDL_test_compare.c"; sourceTree = "<group>"; };
|
||||
324A22B47C420DDB457464A4 /* SDL_test_crc32.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "SDL_test_crc32.c"; path = "../../../../src/test/SDL_test_crc32.c"; sourceTree = "<group>"; };
|
||||
7C134A0D34FC4D84557A7740 /* SDL_test_font.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "SDL_test_font.c"; path = "../../../../src/test/SDL_test_font.c"; sourceTree = "<group>"; };
|
||||
298B79602BB7243F2DC918CC /* SDL_test_fuzzer.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "SDL_test_fuzzer.c"; path = "../../../../src/test/SDL_test_fuzzer.c"; sourceTree = "<group>"; };
|
||||
10E1293A4A1A080255541B1F /* SDL_test_harness.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "SDL_test_harness.c"; path = "../../../../src/test/SDL_test_harness.c"; sourceTree = "<group>"; };
|
||||
3473299674511A515EC85B18 /* SDL_test_imageBlit.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "SDL_test_imageBlit.c"; path = "../../../../src/test/SDL_test_imageBlit.c"; sourceTree = "<group>"; };
|
||||
46D4392C1C2A2D21746004B8 /* SDL_test_imageBlitBlend.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "SDL_test_imageBlitBlend.c"; path = "../../../../src/test/SDL_test_imageBlitBlend.c"; sourceTree = "<group>"; };
|
||||
02C0451848954C585F967106 /* SDL_test_imageFace.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "SDL_test_imageFace.c"; path = "../../../../src/test/SDL_test_imageFace.c"; sourceTree = "<group>"; };
|
||||
3F9A3A9453A870E641EC17FE /* SDL_test_imagePrimitives.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "SDL_test_imagePrimitives.c"; path = "../../../../src/test/SDL_test_imagePrimitives.c"; sourceTree = "<group>"; };
|
||||
69340FD05C9810932D5B3DA7 /* SDL_test_imagePrimitivesBlend.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "SDL_test_imagePrimitivesBlend.c"; path = "../../../../src/test/SDL_test_imagePrimitivesBlend.c"; sourceTree = "<group>"; };
|
||||
50F457701A661F5C56DD6806 /* SDL_test_log.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "SDL_test_log.c"; path = "../../../../src/test/SDL_test_log.c"; sourceTree = "<group>"; };
|
||||
631451F96D09797A39395338 /* SDL_test_md5.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "SDL_test_md5.c"; path = "../../../../src/test/SDL_test_md5.c"; sourceTree = "<group>"; };
|
||||
30A82713021216C43C8619EC /* SDL_test_random.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "SDL_test_random.c"; path = "../../../../src/test/SDL_test_random.c"; sourceTree = "<group>"; };
|
||||
7E114BF405C61A49375F6B9F /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioToolbox.framework"; path = "/System/Library/Frameworks/AudioToolbox.framework"; sourceTree = "<absolute>"; };
|
||||
5B96593D519A75EB2A392F97 /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioUnit.framework"; path = "/System/Library/Frameworks/AudioUnit.framework"; sourceTree = "<absolute>"; };
|
||||
45F83E8C66185B825C3B2F22 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Cocoa.framework"; path = "/System/Library/Frameworks/Cocoa.framework"; sourceTree = "<absolute>"; };
|
||||
390F301014294D505E6811AA /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreAudio.framework"; path = "/System/Library/Frameworks/CoreAudio.framework"; sourceTree = "<absolute>"; };
|
||||
6C622BCF3FDE1F79421C672B /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "IOKit.framework"; path = "/System/Library/Frameworks/IOKit.framework"; sourceTree = "<absolute>"; };
|
||||
762D124313B64A3B6DE020FA /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Carbon.framework"; path = "/System/Library/Frameworks/Carbon.framework"; sourceTree = "<absolute>"; };
|
||||
0DAE522C524806641A083AEB /* ForceFeedback.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "ForceFeedback.framework"; path = "/System/Library/Frameworks/ForceFeedback.framework"; sourceTree = "<absolute>"; };
|
||||
4BD07856726B7C7E5D950CE8 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreFoundation.framework"; path = "/System/Library/Frameworks/CoreFoundation.framework"; sourceTree = "<absolute>"; };
|
||||
1C5049651C43767C030361EC /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "OpenGL.framework"; path = "/System/Library/Frameworks/OpenGL.framework"; sourceTree = "<absolute>"; };
|
||||
1E1175156F97314C291323CB /* libSDL2test.a */ = {isa = PBXFileReference; explicitFileType = archive.ar; includeInIndex = 0; name = "libSDL2test.a"; path = "libSDL2test.a"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
2586308C446C1C7A1D8D1F44 /* SDL2main.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2main.xcodeproj"; path = "../SDL2main/SDL2main.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
7524156959DC362020BE45D2 /* SDL2.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2.xcodeproj"; path = "../SDL2/SDL2.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
3D48554E124D39E0335337FA /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
445F64FC7ADA3EBA30845620 /* AudioToolbox.framework in Frameworks */,
|
||||
628405F619B7693533F272CA /* AudioUnit.framework in Frameworks */,
|
||||
079374543BC5361C0E1C0F2C /* Cocoa.framework in Frameworks */,
|
||||
5AD0424A300F69DE2BBC4BC8 /* CoreAudio.framework in Frameworks */,
|
||||
5D1A13F94F9966E9571B3C91 /* IOKit.framework in Frameworks */,
|
||||
26C240F07CC4571159B3246F /* Carbon.framework in Frameworks */,
|
||||
36C219D71FEC743174BD4B24 /* ForceFeedback.framework in Frameworks */,
|
||||
779B1E6F2FF24FF047276D63 /* CoreFoundation.framework in Frameworks */,
|
||||
4CFD2303559549CC7D321ACE /* OpenGL.framework in Frameworks */,
|
||||
66772CFF530D13744A817F94 /* libSDL2main.a in Frameworks */,
|
||||
361A737046B91D3D2B122E80 /* libSDL2.a in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
1FB469BB7E2F5A4659ED5F39 /* SDL2test */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
56EC37C45DBA006839404305 /* src */,
|
||||
795F6F6A1E037849252B6A89 /* Frameworks */,
|
||||
6A8845BC486E4A3701F1222D /* Products */,
|
||||
55E27D766A715CFB047C11E2 /* Projects */,
|
||||
);
|
||||
name = "SDL2test";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
56EC37C45DBA006839404305 /* src */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
1BF37558187B43BB605E5CCE /* test */,
|
||||
);
|
||||
name = "src";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
1BF37558187B43BB605E5CCE /* test */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
64702E4E1458346C45853388 /* SDL_test_assert.c */,
|
||||
49A239233C6C6CA56CE74C48 /* SDL_test_common.c */,
|
||||
2CD224BD127B6FAC31FB648B /* SDL_test_compare.c */,
|
||||
324A22B47C420DDB457464A4 /* SDL_test_crc32.c */,
|
||||
7C134A0D34FC4D84557A7740 /* SDL_test_font.c */,
|
||||
298B79602BB7243F2DC918CC /* SDL_test_fuzzer.c */,
|
||||
10E1293A4A1A080255541B1F /* SDL_test_harness.c */,
|
||||
3473299674511A515EC85B18 /* SDL_test_imageBlit.c */,
|
||||
46D4392C1C2A2D21746004B8 /* SDL_test_imageBlitBlend.c */,
|
||||
02C0451848954C585F967106 /* SDL_test_imageFace.c */,
|
||||
3F9A3A9453A870E641EC17FE /* SDL_test_imagePrimitives.c */,
|
||||
69340FD05C9810932D5B3DA7 /* SDL_test_imagePrimitivesBlend.c */,
|
||||
50F457701A661F5C56DD6806 /* SDL_test_log.c */,
|
||||
631451F96D09797A39395338 /* SDL_test_md5.c */,
|
||||
30A82713021216C43C8619EC /* SDL_test_random.c */,
|
||||
);
|
||||
name = "test";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
795F6F6A1E037849252B6A89 /* Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
7E114BF405C61A49375F6B9F /* AudioToolbox.framework */,
|
||||
5B96593D519A75EB2A392F97 /* AudioUnit.framework */,
|
||||
45F83E8C66185B825C3B2F22 /* Cocoa.framework */,
|
||||
390F301014294D505E6811AA /* CoreAudio.framework */,
|
||||
6C622BCF3FDE1F79421C672B /* IOKit.framework */,
|
||||
762D124313B64A3B6DE020FA /* Carbon.framework */,
|
||||
0DAE522C524806641A083AEB /* ForceFeedback.framework */,
|
||||
4BD07856726B7C7E5D950CE8 /* CoreFoundation.framework */,
|
||||
1C5049651C43767C030361EC /* OpenGL.framework */,
|
||||
);
|
||||
name = "Frameworks";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
6A8845BC486E4A3701F1222D /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
1E1175156F97314C291323CB /* libSDL2test.a */,
|
||||
);
|
||||
name = "Products";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
55E27D766A715CFB047C11E2 /* Projects */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
2586308C446C1C7A1D8D1F44 /* SDL2main.xcodeproj */,
|
||||
7524156959DC362020BE45D2 /* SDL2.xcodeproj */,
|
||||
);
|
||||
name = "Projects";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
59F10019753464A80ACA61C2 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
3B6D31FD16317046144826F4 /* libSDL2main.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
4DBA793E60F7389C45A23630 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
6EF4020950DF15C7645540BE /* libSDL2.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
7CD70F5D43DA554D66287CFC /* SDL2test */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 0B1800395F995523000222B7 /* Build configuration list for PBXNativeTarget "SDL2test" */;
|
||||
buildPhases = (
|
||||
35BD3B0B4FD3288E0D252E74 /* Resources */,
|
||||
51B160D8261B3CDB61990505 /* Sources */,
|
||||
3D48554E124D39E0335337FA /* Frameworks */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
323011DF03D31A8540301B10 /* PBXTargetDependency */,
|
||||
4BA611C06B4A67550F3B6BA1 /* PBXTargetDependency */,
|
||||
);
|
||||
name = "SDL2test";
|
||||
productName = "SDL2test";
|
||||
productReference = 1E1175156F97314C291323CB /* libSDL2test.a */;
|
||||
productType = "com.apple.product-type.library.static";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
08FB7793FE84155DC02AAC07 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
buildConfigurationList = 1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "SDL2test" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
hasScannedForEncodings = 1;
|
||||
mainGroup = 1FB469BB7E2F5A4659ED5F39 /* SDL2test */;
|
||||
projectDirPath = "";
|
||||
projectReferences = (
|
||||
{
|
||||
ProductGroup = 59F10019753464A80ACA61C2 /* Products */;
|
||||
ProjectRef = 2586308C446C1C7A1D8D1F44 /* SDL2main.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 4DBA793E60F7389C45A23630 /* Products */;
|
||||
ProjectRef = 7524156959DC362020BE45D2 /* SDL2.xcodeproj */;
|
||||
},
|
||||
);
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
7CD70F5D43DA554D66287CFC /* libSDL2test.a */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXReferenceProxy section */
|
||||
3B6D31FD16317046144826F4 /* libSDL2main.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2main.a";
|
||||
remoteRef = 4256279152F56A071E0B1818 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
6EF4020950DF15C7645540BE /* libSDL2.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2.a";
|
||||
remoteRef = 15D75AF543BC727911CB4C32 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
/* End PBXReferenceProxy section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
35BD3B0B4FD3288E0D252E74 /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
51B160D8261B3CDB61990505 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
337D79CE5C6E740E7845219E /* SDL_test_assert.c in Sources */,
|
||||
0D1D797B22CC02F330FF5E47 /* SDL_test_common.c in Sources */,
|
||||
1327749E357953A70CCF170A /* SDL_test_compare.c in Sources */,
|
||||
5BA46CE023E7234071C61356 /* SDL_test_crc32.c in Sources */,
|
||||
35EF0E232141409B16135264 /* SDL_test_font.c in Sources */,
|
||||
24FC39DE3EDC7E2810DE1A63 /* SDL_test_fuzzer.c in Sources */,
|
||||
17300EC9649122EC74172668 /* SDL_test_harness.c in Sources */,
|
||||
3271353414A709102AEC727C /* SDL_test_imageBlit.c in Sources */,
|
||||
6F86057B520C152A35441188 /* SDL_test_imageBlitBlend.c in Sources */,
|
||||
54B811C75417488052B86ACB /* SDL_test_imageFace.c in Sources */,
|
||||
30DD2C017D1C74A7192E20FD /* SDL_test_imagePrimitives.c in Sources */,
|
||||
41C97B2F609370172B895949 /* SDL_test_imagePrimitivesBlend.c in Sources */,
|
||||
7A0D0AEA2B651F1557DE60A0 /* SDL_test_log.c in Sources */,
|
||||
33CD7CD04DFE6AE920702DA3 /* SDL_test_md5.c in Sources */,
|
||||
782955367C837DBE79096716 /* SDL_test_random.c in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXVariantGroup section */
|
||||
/* End PBXVariantGroup section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
323011DF03D31A8540301B10 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2main.a";
|
||||
targetProxy = 543772357FCE478840DB05E1 /* PBXContainerItemProxy */;
|
||||
};
|
||||
4BA611C06B4A67550F3B6BA1 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2.a";
|
||||
targetProxy = 008B326E705E69EC1A0B00B4 /* PBXContainerItemProxy */;
|
||||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
4A2953F0465464715FF64F2F /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/lib;
|
||||
PRODUCT_NAME = "SDL2test";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
27874CF36C0C48391D621F81 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/lib;
|
||||
PRODUCT_NAME = "SDL2test";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
1C32324B72E80242501F43F2 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/lib;
|
||||
PRODUCT_NAME = "SDL2test";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
5AFE7B533F5F255666177F5B /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/lib;
|
||||
PRODUCT_NAME = "SDL2test";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
42AF24F81A8936CB00095CCD /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"..",
|
||||
"../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
7F6D4F3E122F5AC81F875AAD /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"..",
|
||||
"../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
54FF675725126F2E36652B1C /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"..",
|
||||
"../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
69475F78601C5BAB6CB770F8 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"..",
|
||||
"../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
0B1800395F995523000222B7 /* Build configuration list for PBXNativeTarget "libSDL2test.a" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
4A2953F0465464715FF64F2F /* Debug Universal */,
|
||||
27874CF36C0C48391D621F81 /* Debug Native */,
|
||||
1C32324B72E80242501F43F2 /* Release Universal */,
|
||||
5AFE7B533F5F255666177F5B /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "SDL2test" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
42AF24F81A8936CB00095CCD /* Debug Universal */,
|
||||
7F6D4F3E122F5AC81F875AAD /* Debug Native */,
|
||||
54FF675725126F2E36652B1C /* Release Universal */,
|
||||
69475F78601C5BAB6CB770F8 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
|
||||
};
|
||||
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
|
||||
}
|
205
premake/Xcode/Xcode3/SDL_config_premake.h
Normal file
205
premake/Xcode/Xcode3/SDL_config_premake.h
Normal file
|
@ -0,0 +1,205 @@
|
|||
/*
|
||||
Simple DirectMedia Layer
|
||||
Copyright (C) 1997-2015 Sam Lantinga <slouken@libsdl.org>
|
||||
|
||||
This software is provided 'as-is', without any express or implied
|
||||
warranty. In no event will the authors be held liable for any damages
|
||||
arising from the use of this software.
|
||||
|
||||
Permission is granted to anyone to use this software for any purpose,
|
||||
including commercial applications, and to alter it and redistribute it
|
||||
freely, subject to the following restrictions:
|
||||
|
||||
1. The origin of this software must not be misrepresented; you must not
|
||||
claim that you wrote the original software. If you use this software
|
||||
in a product, an acknowledgment in the product documentation would be
|
||||
appreciated but is not required.
|
||||
2. Altered source versions must be plainly marked as such, and must not be
|
||||
misrepresented as being the original software.
|
||||
3. This notice may not be removed or altered from any source distribution.
|
||||
*/
|
||||
|
||||
#ifndef _SDL_config_macosx_h
|
||||
#define _SDL_config_macosx_h
|
||||
|
||||
#include "SDL_platform.h"
|
||||
|
||||
/* This gets us MAC_OS_X_VERSION_MIN_REQUIRED... */
|
||||
#include <AvailabilityMacros.h>
|
||||
|
||||
/* This is a set of defines to configure the SDL features */
|
||||
|
||||
#ifdef __LP64__
|
||||
#define SIZEOF_VOIDP 8
|
||||
#else
|
||||
#define SIZEOF_VOIDP 4
|
||||
#endif
|
||||
|
||||
/* Useful headers */
|
||||
/* If we specified an SDK or have a post-PowerPC chip, then alloca.h exists. */
|
||||
#if ( (MAC_OS_X_VERSION_MIN_REQUIRED >= 1030) || (!defined(__POWERPC__)) )
|
||||
#define HAVE_ALLOCA_H 1
|
||||
#endif
|
||||
#define HAVE_SYS_TYPES_H 1
|
||||
#define HAVE_STDIO_H 1
|
||||
#define STDC_HEADERS 1
|
||||
#define HAVE_STRING_H 1
|
||||
#define HAVE_INTTYPES_H 1
|
||||
#define HAVE_STDINT_H 1
|
||||
#define HAVE_CTYPE_H 1
|
||||
#define HAVE_MATH_H 1
|
||||
#define HAVE_SIGNAL_H 1
|
||||
|
||||
/* C library functions */
|
||||
#define HAVE_MALLOC 1
|
||||
#define HAVE_CALLOC 1
|
||||
#define HAVE_REALLOC 1
|
||||
#define HAVE_FREE 1
|
||||
#define HAVE_ALLOCA 1
|
||||
#define HAVE_GETENV 1
|
||||
#define HAVE_SETENV 1
|
||||
#define HAVE_PUTENV 1
|
||||
#define HAVE_UNSETENV 1
|
||||
#define HAVE_QSORT 1
|
||||
#define HAVE_ABS 1
|
||||
#define HAVE_BCOPY 1
|
||||
#define HAVE_MEMSET 1
|
||||
#define HAVE_MEMCPY 1
|
||||
#define HAVE_MEMMOVE 1
|
||||
#define HAVE_MEMCMP 1
|
||||
#define HAVE_STRLEN 1
|
||||
#define HAVE_STRLCPY 1
|
||||
#define HAVE_STRLCAT 1
|
||||
#define HAVE_STRDUP 1
|
||||
#define HAVE_STRCHR 1
|
||||
#define HAVE_STRRCHR 1
|
||||
#define HAVE_STRSTR 1
|
||||
#define HAVE_STRTOL 1
|
||||
#define HAVE_STRTOUL 1
|
||||
#define HAVE_STRTOLL 1
|
||||
#define HAVE_STRTOULL 1
|
||||
#define HAVE_STRTOD 1
|
||||
#define HAVE_ATOI 1
|
||||
#define HAVE_ATOF 1
|
||||
#define HAVE_STRCMP 1
|
||||
#define HAVE_STRNCMP 1
|
||||
#define HAVE_STRCASECMP 1
|
||||
#define HAVE_STRNCASECMP 1
|
||||
#define HAVE_VSSCANF 1
|
||||
#define HAVE_VSNPRINTF 1
|
||||
#define HAVE_CEIL 1
|
||||
#define HAVE_COPYSIGN 1
|
||||
#define HAVE_COS 1
|
||||
#define HAVE_COSF 1
|
||||
#define HAVE_FABS 1
|
||||
#define HAVE_FLOOR 1
|
||||
#define HAVE_LOG 1
|
||||
#define HAVE_POW 1
|
||||
#define HAVE_SCALBN 1
|
||||
#define HAVE_SIN 1
|
||||
#define HAVE_SINF 1
|
||||
#define HAVE_SQRT 1
|
||||
#define HAVE_SIGACTION 1
|
||||
#define HAVE_SETJMP 1
|
||||
#define HAVE_NANOSLEEP 1
|
||||
#define HAVE_SYSCONF 1
|
||||
#define HAVE_SYSCTLBYNAME 1
|
||||
#define HAVE_ATAN 1
|
||||
#define HAVE_ATAN2 1
|
||||
|
||||
#ifndef SDL_AUDIO_DRIVER_DUMMY
|
||||
#define SDL_AUDIO_DRIVER_DUMMY 1
|
||||
#endif
|
||||
#ifndef SDL_AUDIO_DRIVER_DISK
|
||||
#define SDL_AUDIO_DRIVER_DISK 1
|
||||
#endif
|
||||
#ifndef SDL_VIDEO_DRIVER_DUMMY
|
||||
#define SDL_VIDEO_DRIVER_DUMMY 1
|
||||
#endif
|
||||
#ifndef SDL_VIDEO_RENDER_OGL
|
||||
#define SDL_VIDEO_RENDER_OGL 1
|
||||
#endif
|
||||
#ifndef SDL_VIDEO_OPENGL
|
||||
#define SDL_VIDEO_OPENGL 1
|
||||
#endif
|
||||
#ifndef SDL_AUDIO_DRIVER_COREAUDIO
|
||||
#define SDL_AUDIO_DRIVER_COREAUDIO 1
|
||||
#endif
|
||||
#ifndef SDL_POWER_MACOSX
|
||||
#define SDL_POWER_MACOSX 1
|
||||
#endif
|
||||
#ifndef SDL_THREAD_PTHREAD_RECURSIVE_MUTEX
|
||||
#define SDL_THREAD_PTHREAD_RECURSIVE_MUTEX 1
|
||||
#endif
|
||||
#ifndef SDL_LOADSO_DLOPEN
|
||||
#define SDL_LOADSO_DLOPEN 1
|
||||
#endif
|
||||
#ifndef SDL_FILESYSTEM_COCOA
|
||||
#define SDL_FILESYSTEM_COCOA 1
|
||||
#endif
|
||||
#ifndef SDL_VIDEO_DRIVER_COCOA
|
||||
#define SDL_VIDEO_DRIVER_COCOA 1
|
||||
#endif
|
||||
#ifndef SDL_THREAD_PTHREAD
|
||||
#define SDL_THREAD_PTHREAD 1
|
||||
#endif
|
||||
#ifndef SDL_TIMER_UNIX
|
||||
#define SDL_TIMER_UNIX 1
|
||||
#endif
|
||||
#ifndef SDL_HAPTIC_IOKIT
|
||||
#define SDL_HAPTIC_IOKIT 1
|
||||
#endif
|
||||
#ifndef SDL_JOYSTICK_IOKIT
|
||||
#define SDL_JOYSTICK_IOKIT 1
|
||||
#endif
|
||||
|
||||
/* Enable various video drivers */
|
||||
#undef SDL_VIDEO_DRIVER_X11
|
||||
#define SDL_VIDEO_DRIVER_X11_DYNAMIC "/usr/X11R6/lib/libX11.6.dylib"
|
||||
#define SDL_VIDEO_DRIVER_X11_DYNAMIC_XEXT "/usr/X11R6/lib/libXext.6.dylib"
|
||||
#define SDL_VIDEO_DRIVER_X11_DYNAMIC_XINERAMA "/usr/X11R6/lib/libXinerama.1.dylib"
|
||||
#define SDL_VIDEO_DRIVER_X11_DYNAMIC_XINPUT2 "/usr/X11R6/lib/libXi.6.dylib"
|
||||
#define SDL_VIDEO_DRIVER_X11_DYNAMIC_XRANDR "/usr/X11R6/lib/libXrandr.2.dylib"
|
||||
#define SDL_VIDEO_DRIVER_X11_DYNAMIC_XSS "/usr/X11R6/lib/libXss.1.dylib"
|
||||
#define SDL_VIDEO_DRIVER_X11_DYNAMIC_XVIDMODE "/usr/X11R6/lib/libXxf86vm.1.dylib"
|
||||
#define SDL_VIDEO_DRIVER_X11_XDBE 1
|
||||
#define SDL_VIDEO_DRIVER_X11_XINERAMA 1
|
||||
#define SDL_VIDEO_DRIVER_X11_XRANDR 1
|
||||
#define SDL_VIDEO_DRIVER_X11_XSCRNSAVER 1
|
||||
#define SDL_VIDEO_DRIVER_X11_XSHAPE 1
|
||||
#define SDL_VIDEO_DRIVER_X11_XVIDMODE 1
|
||||
#define SDL_VIDEO_DRIVER_X11_HAS_XKBKEYCODETOKEYSYM 1
|
||||
|
||||
#ifdef MAC_OS_X_VERSION_10_8
|
||||
/*
|
||||
* No matter the versions targeted, this is the 10.8 or later SDK, so you have
|
||||
* to use the external Xquartz, which is a more modern Xlib. Previous SDKs
|
||||
* used an older Xlib.
|
||||
*/
|
||||
#define SDL_VIDEO_DRIVER_X11_XINPUT2 1
|
||||
#define SDL_VIDEO_DRIVER_X11_SUPPORTS_GENERIC_EVENTS 1
|
||||
#define SDL_VIDEO_DRIVER_X11_CONST_PARAM_XEXTADDDISPLAY 1
|
||||
#endif
|
||||
|
||||
#ifndef SDL_VIDEO_RENDER_OGL
|
||||
#define SDL_VIDEO_RENDER_OGL 1
|
||||
#endif
|
||||
|
||||
/* Enable OpenGL support */
|
||||
#ifndef SDL_VIDEO_OPENGL
|
||||
#define SDL_VIDEO_OPENGL 1
|
||||
#endif
|
||||
#ifndef SDL_VIDEO_OPENGL_CGL
|
||||
#define SDL_VIDEO_OPENGL_CGL 1
|
||||
#endif
|
||||
#ifndef SDL_VIDEO_OPENGL_GLX
|
||||
#define SDL_VIDEO_OPENGL_GLX 1
|
||||
#endif
|
||||
|
||||
/* Enable assembly routines */
|
||||
#define SDL_ASSEMBLY_ROUTINES 1
|
||||
#ifdef __ppc__
|
||||
#define SDL_ALTIVEC_BLITTERS 1
|
||||
#endif
|
||||
|
||||
#endif /* _SDL_config_macosx_h */
|
457
premake/Xcode/Xcode3/tests/checkkeys/checkkeys.xcodeproj/project.pbxproj
Executable file
457
premake/Xcode/Xcode3/tests/checkkeys/checkkeys.xcodeproj/project.pbxproj
Executable file
|
@ -0,0 +1,457 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 45;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
322A045A6E6557341FEB170E /* checkkeys.c in Sources */ = {isa = PBXBuildFile; fileRef = 69E572554280205947E1455E /* checkkeys.c */; };
|
||||
1FCE2801700D10B63EAC1E96 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7B41193166084200141239E9 /* AudioToolbox.framework */; };
|
||||
26A66ECE2F7335D609283499 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 377836464C33612C220B072D /* AudioUnit.framework */; };
|
||||
4365370425D617CC73BE4C14 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 35137B2F5A4640634A9464E4 /* Cocoa.framework */; };
|
||||
1F491C03156D41743AEA6CC6 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5CDC7A684893646334D67868 /* CoreAudio.framework */; };
|
||||
5F4268810C9079E1525E534B /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5EED43C81C1B3A0465AA1A66 /* IOKit.framework */; };
|
||||
096C508759AB2A6F1E8951AE /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7DE90946568C14882904699E /* Carbon.framework */; };
|
||||
776B4FFD176F147317A43518 /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0053648C598616BC17197439 /* ForceFeedback.framework */; };
|
||||
6538777413730E577BFE01EF /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 65F55FB02F4E3C726D3D53C9 /* CoreFoundation.framework */; };
|
||||
25CB70B645686B0611D94900 /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0CAC1E0579FF66CF4E020083 /* OpenGL.framework */; };
|
||||
65471E063B7511EA51D23F99 /* libSDL2main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 0AED7A57072C0FB5641461D8 /* libSDL2main.a */; };
|
||||
301E37E4700D6F3509D321B6 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4A642093282471FB2AFE4720 /* libSDL2.a */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
6CA1620A302414004CAF7859 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 5F040F224166126D41637CA8 /* SDL2main.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 58DC62993160374E09FF7AD6;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
5A281B75525E214430CA3469 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 5F040F224166126D41637CA8 /* SDL2main.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 0E7126A94A11494963D3548B;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
07CA7ED360C823EC041E505C /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 7C366261561B202361AC09EF /* SDL2.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 07D004B11E733F1F0EA93105;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
683637717D1D307C46EF25FE /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 7C366261561B202361AC09EF /* SDL2.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 58C10ED14175754444033E0E;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
69E572554280205947E1455E /* checkkeys.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "checkkeys.c"; path = "../../../../../test/checkkeys.c"; sourceTree = "<group>"; };
|
||||
7B41193166084200141239E9 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioToolbox.framework"; path = "/System/Library/Frameworks/AudioToolbox.framework"; sourceTree = "<absolute>"; };
|
||||
377836464C33612C220B072D /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioUnit.framework"; path = "/System/Library/Frameworks/AudioUnit.framework"; sourceTree = "<absolute>"; };
|
||||
35137B2F5A4640634A9464E4 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Cocoa.framework"; path = "/System/Library/Frameworks/Cocoa.framework"; sourceTree = "<absolute>"; };
|
||||
5CDC7A684893646334D67868 /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreAudio.framework"; path = "/System/Library/Frameworks/CoreAudio.framework"; sourceTree = "<absolute>"; };
|
||||
5EED43C81C1B3A0465AA1A66 /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "IOKit.framework"; path = "/System/Library/Frameworks/IOKit.framework"; sourceTree = "<absolute>"; };
|
||||
7DE90946568C14882904699E /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Carbon.framework"; path = "/System/Library/Frameworks/Carbon.framework"; sourceTree = "<absolute>"; };
|
||||
0053648C598616BC17197439 /* ForceFeedback.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "ForceFeedback.framework"; path = "/System/Library/Frameworks/ForceFeedback.framework"; sourceTree = "<absolute>"; };
|
||||
65F55FB02F4E3C726D3D53C9 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreFoundation.framework"; path = "/System/Library/Frameworks/CoreFoundation.framework"; sourceTree = "<absolute>"; };
|
||||
0CAC1E0579FF66CF4E020083 /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "OpenGL.framework"; path = "/System/Library/Frameworks/OpenGL.framework"; sourceTree = "<absolute>"; };
|
||||
0A40748B0E5F234B355B6BD2 /* checkkeys */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = "checkkeys"; path = "checkkeys"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
5F040F224166126D41637CA8 /* SDL2main.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2main.xcodeproj"; path = "../../SDL2main/SDL2main.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
7C366261561B202361AC09EF /* SDL2.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2.xcodeproj"; path = "../../SDL2/SDL2.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
5CFA422E755324E01F465E4A /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
1FCE2801700D10B63EAC1E96 /* AudioToolbox.framework in Frameworks */,
|
||||
26A66ECE2F7335D609283499 /* AudioUnit.framework in Frameworks */,
|
||||
4365370425D617CC73BE4C14 /* Cocoa.framework in Frameworks */,
|
||||
1F491C03156D41743AEA6CC6 /* CoreAudio.framework in Frameworks */,
|
||||
5F4268810C9079E1525E534B /* IOKit.framework in Frameworks */,
|
||||
096C508759AB2A6F1E8951AE /* Carbon.framework in Frameworks */,
|
||||
776B4FFD176F147317A43518 /* ForceFeedback.framework in Frameworks */,
|
||||
6538777413730E577BFE01EF /* CoreFoundation.framework in Frameworks */,
|
||||
25CB70B645686B0611D94900 /* OpenGL.framework in Frameworks */,
|
||||
65471E063B7511EA51D23F99 /* libSDL2main.a in Frameworks */,
|
||||
301E37E4700D6F3509D321B6 /* libSDL2.a in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
7551320B77D378B21D42667A /* checkkeys */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
049836107F76417B7B837FAD /* test */,
|
||||
28AB780A0708383130F605F2 /* Frameworks */,
|
||||
51A87EEE71086351715325F5 /* Products */,
|
||||
0F4933074A3308093A560CDC /* Projects */,
|
||||
);
|
||||
name = "checkkeys";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
049836107F76417B7B837FAD /* test */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
69E572554280205947E1455E /* checkkeys.c */,
|
||||
);
|
||||
name = "test";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
28AB780A0708383130F605F2 /* Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
7B41193166084200141239E9 /* AudioToolbox.framework */,
|
||||
377836464C33612C220B072D /* AudioUnit.framework */,
|
||||
35137B2F5A4640634A9464E4 /* Cocoa.framework */,
|
||||
5CDC7A684893646334D67868 /* CoreAudio.framework */,
|
||||
5EED43C81C1B3A0465AA1A66 /* IOKit.framework */,
|
||||
7DE90946568C14882904699E /* Carbon.framework */,
|
||||
0053648C598616BC17197439 /* ForceFeedback.framework */,
|
||||
65F55FB02F4E3C726D3D53C9 /* CoreFoundation.framework */,
|
||||
0CAC1E0579FF66CF4E020083 /* OpenGL.framework */,
|
||||
);
|
||||
name = "Frameworks";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
51A87EEE71086351715325F5 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
0A40748B0E5F234B355B6BD2 /* checkkeys */,
|
||||
);
|
||||
name = "Products";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
0F4933074A3308093A560CDC /* Projects */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
5F040F224166126D41637CA8 /* SDL2main.xcodeproj */,
|
||||
7C366261561B202361AC09EF /* SDL2.xcodeproj */,
|
||||
);
|
||||
name = "Projects";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
59F362F429F137244C5D266F /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
0AED7A57072C0FB5641461D8 /* libSDL2main.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
788031B312545C5E499B0933 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
4A642093282471FB2AFE4720 /* libSDL2.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
3472466F263432064675348C /* checkkeys */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 35E43ED924A827077A73277C /* Build configuration list for PBXNativeTarget "checkkeys" */;
|
||||
buildPhases = (
|
||||
481B20AA7C407A1062E82AA2 /* Resources */,
|
||||
07EE599C1DA9643F7D1446B2 /* Sources */,
|
||||
5CFA422E755324E01F465E4A /* Frameworks */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
08422E7313E947714D9A4D60 /* PBXTargetDependency */,
|
||||
4F265B2E3FD67B4C742268B7 /* PBXTargetDependency */,
|
||||
);
|
||||
name = "checkkeys";
|
||||
productInstallPath = "$(HOME)/bin";
|
||||
productName = "checkkeys";
|
||||
productReference = 0A40748B0E5F234B355B6BD2 /* checkkeys */;
|
||||
productType = "com.apple.product-type.tool";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
08FB7793FE84155DC02AAC07 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
buildConfigurationList = 1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "checkkeys" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
hasScannedForEncodings = 1;
|
||||
mainGroup = 7551320B77D378B21D42667A /* checkkeys */;
|
||||
projectDirPath = "";
|
||||
projectReferences = (
|
||||
{
|
||||
ProductGroup = 59F362F429F137244C5D266F /* Products */;
|
||||
ProjectRef = 5F040F224166126D41637CA8 /* SDL2main.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 788031B312545C5E499B0933 /* Products */;
|
||||
ProjectRef = 7C366261561B202361AC09EF /* SDL2.xcodeproj */;
|
||||
},
|
||||
);
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
3472466F263432064675348C /* checkkeys */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXReferenceProxy section */
|
||||
0AED7A57072C0FB5641461D8 /* libSDL2main.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2main.a";
|
||||
remoteRef = 6CA1620A302414004CAF7859 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
4A642093282471FB2AFE4720 /* libSDL2.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2.a";
|
||||
remoteRef = 07CA7ED360C823EC041E505C /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
/* End PBXReferenceProxy section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
481B20AA7C407A1062E82AA2 /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
07EE599C1DA9643F7D1446B2 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
322A045A6E6557341FEB170E /* checkkeys.c in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXVariantGroup section */
|
||||
/* End PBXVariantGroup section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
08422E7313E947714D9A4D60 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2main.a";
|
||||
targetProxy = 5A281B75525E214430CA3469 /* PBXContainerItemProxy */;
|
||||
};
|
||||
4F265B2E3FD67B4C742268B7 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2.a";
|
||||
targetProxy = 683637717D1D307C46EF25FE /* PBXContainerItemProxy */;
|
||||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
2E4F7DDA1DC234142D0741B2 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "checkkeys";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
357133BE06BC44C0570072ED /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "checkkeys";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
5C19111B085728896B520456 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "checkkeys";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
47345D7163004A837E2C2C37 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "checkkeys";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
15E4471025F065D87E7163FA /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
5E6430007D976B98018E4629 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
5A7A1D38700F164F1E67012B /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
018428DC1BFD1068496C0024 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
35E43ED924A827077A73277C /* Build configuration list for PBXNativeTarget "checkkeys" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
2E4F7DDA1DC234142D0741B2 /* Debug Universal */,
|
||||
357133BE06BC44C0570072ED /* Debug Native */,
|
||||
5C19111B085728896B520456 /* Release Universal */,
|
||||
47345D7163004A837E2C2C37 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "checkkeys" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
15E4471025F065D87E7163FA /* Debug Universal */,
|
||||
5E6430007D976B98018E4629 /* Debug Native */,
|
||||
5A7A1D38700F164F1E67012B /* Release Universal */,
|
||||
018428DC1BFD1068496C0024 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
|
||||
};
|
||||
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
|
||||
}
|
474
premake/Xcode/Xcode3/tests/loopwave/loopwave.xcodeproj/project.pbxproj
Executable file
474
premake/Xcode/Xcode3/tests/loopwave/loopwave.xcodeproj/project.pbxproj
Executable file
|
@ -0,0 +1,474 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 45;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
062A6EDF012B6A9641AF7FB9 /* loopwave.c in Sources */ = {isa = PBXBuildFile; fileRef = 310564485C4C21834D350ABF /* loopwave.c */; };
|
||||
74BA75FA18A45A5F48914818 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 45F63DE3224C48AD69A84503 /* AudioToolbox.framework */; };
|
||||
030A07FE614A57CC37BD5DCD /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 240F5523036E3C8367F06030 /* AudioUnit.framework */; };
|
||||
0F1F5EE861F95A0E61FD5ECE /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7A882424412B0D2E066E4BDA /* Cocoa.framework */; };
|
||||
318941345DA23FC34A426730 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3C975E904CA854270617673C /* CoreAudio.framework */; };
|
||||
6F07387D48157F33023D0A69 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24901D3671DE2DF7514A6D0E /* IOKit.framework */; };
|
||||
01E5042B3AA5283671B74556 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 20A9382B41CB0A2A01775579 /* Carbon.framework */; };
|
||||
21F71E1F43A5162016BA26FF /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B0157215DCF781564126260 /* ForceFeedback.framework */; };
|
||||
39FB43AD4E663E5963DD6A64 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6A2D5945566B43BD503B7232 /* CoreFoundation.framework */; };
|
||||
2F3235902F1B3BBF7ACF4467 /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 048837873DA5449857AE60F1 /* OpenGL.framework */; };
|
||||
44CF28ED62B90C68060E03ED /* libSDL2main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4A90682A48B24B01354821FE /* libSDL2main.a */; };
|
||||
0889617D5DD21848312A70F4 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 314673287DC135CE214818AB /* libSDL2.a */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
67037CC85B947C4B58B64EBA /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 7B49049B002E76D557C760E2 /* SDL2main.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 58DC62993160374E09FF7AD6;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
1D5961507A4825A667DA30BA /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 7B49049B002E76D557C760E2 /* SDL2main.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 0E7126A94A11494963D3548B;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
032B3A303D376DC41DC118C1 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 4DEA3F7F3F8009FA7EF07AA6 /* SDL2.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 07D004B11E733F1F0EA93105;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
6523111C79426E4733A759B4 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 4DEA3F7F3F8009FA7EF07AA6 /* SDL2.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 58C10ED14175754444033E0E;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
310564485C4C21834D350ABF /* loopwave.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "loopwave.c"; path = "../../../../../test/loopwave.c"; sourceTree = "<group>"; };
|
||||
45F63DE3224C48AD69A84503 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioToolbox.framework"; path = "/System/Library/Frameworks/AudioToolbox.framework"; sourceTree = "<absolute>"; };
|
||||
240F5523036E3C8367F06030 /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioUnit.framework"; path = "/System/Library/Frameworks/AudioUnit.framework"; sourceTree = "<absolute>"; };
|
||||
7A882424412B0D2E066E4BDA /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Cocoa.framework"; path = "/System/Library/Frameworks/Cocoa.framework"; sourceTree = "<absolute>"; };
|
||||
3C975E904CA854270617673C /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreAudio.framework"; path = "/System/Library/Frameworks/CoreAudio.framework"; sourceTree = "<absolute>"; };
|
||||
24901D3671DE2DF7514A6D0E /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "IOKit.framework"; path = "/System/Library/Frameworks/IOKit.framework"; sourceTree = "<absolute>"; };
|
||||
20A9382B41CB0A2A01775579 /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Carbon.framework"; path = "/System/Library/Frameworks/Carbon.framework"; sourceTree = "<absolute>"; };
|
||||
3B0157215DCF781564126260 /* ForceFeedback.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "ForceFeedback.framework"; path = "/System/Library/Frameworks/ForceFeedback.framework"; sourceTree = "<absolute>"; };
|
||||
6A2D5945566B43BD503B7232 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreFoundation.framework"; path = "/System/Library/Frameworks/CoreFoundation.framework"; sourceTree = "<absolute>"; };
|
||||
048837873DA5449857AE60F1 /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "OpenGL.framework"; path = "/System/Library/Frameworks/OpenGL.framework"; sourceTree = "<absolute>"; };
|
||||
2B02458468CD2BA4494B5B96 /* loopwave */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = "loopwave"; path = "loopwave"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
7B49049B002E76D557C760E2 /* SDL2main.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2main.xcodeproj"; path = "../../SDL2main/SDL2main.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
4DEA3F7F3F8009FA7EF07AA6 /* SDL2.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2.xcodeproj"; path = "../../SDL2/SDL2.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
75C83A552FB74F98392A11C9 /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
74BA75FA18A45A5F48914818 /* AudioToolbox.framework in Frameworks */,
|
||||
030A07FE614A57CC37BD5DCD /* AudioUnit.framework in Frameworks */,
|
||||
0F1F5EE861F95A0E61FD5ECE /* Cocoa.framework in Frameworks */,
|
||||
318941345DA23FC34A426730 /* CoreAudio.framework in Frameworks */,
|
||||
6F07387D48157F33023D0A69 /* IOKit.framework in Frameworks */,
|
||||
01E5042B3AA5283671B74556 /* Carbon.framework in Frameworks */,
|
||||
21F71E1F43A5162016BA26FF /* ForceFeedback.framework in Frameworks */,
|
||||
39FB43AD4E663E5963DD6A64 /* CoreFoundation.framework in Frameworks */,
|
||||
2F3235902F1B3BBF7ACF4467 /* OpenGL.framework in Frameworks */,
|
||||
44CF28ED62B90C68060E03ED /* libSDL2main.a in Frameworks */,
|
||||
0889617D5DD21848312A70F4 /* libSDL2.a in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
6146648358E1392E02AB47F4 /* loopwave */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
7A7E0491571D313D2B8C7AFF /* test */,
|
||||
52B4655961EA4A53123224EB /* Frameworks */,
|
||||
563E36452CA11B6B4DE71E87 /* Products */,
|
||||
4E0A12F05B3528FB2ED95097 /* Projects */,
|
||||
);
|
||||
name = "loopwave";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
7A7E0491571D313D2B8C7AFF /* test */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
310564485C4C21834D350ABF /* loopwave.c */,
|
||||
);
|
||||
name = "test";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
52B4655961EA4A53123224EB /* Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
45F63DE3224C48AD69A84503 /* AudioToolbox.framework */,
|
||||
240F5523036E3C8367F06030 /* AudioUnit.framework */,
|
||||
7A882424412B0D2E066E4BDA /* Cocoa.framework */,
|
||||
3C975E904CA854270617673C /* CoreAudio.framework */,
|
||||
24901D3671DE2DF7514A6D0E /* IOKit.framework */,
|
||||
20A9382B41CB0A2A01775579 /* Carbon.framework */,
|
||||
3B0157215DCF781564126260 /* ForceFeedback.framework */,
|
||||
6A2D5945566B43BD503B7232 /* CoreFoundation.framework */,
|
||||
048837873DA5449857AE60F1 /* OpenGL.framework */,
|
||||
);
|
||||
name = "Frameworks";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
563E36452CA11B6B4DE71E87 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
2B02458468CD2BA4494B5B96 /* loopwave */,
|
||||
);
|
||||
name = "Products";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
4E0A12F05B3528FB2ED95097 /* Projects */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
7B49049B002E76D557C760E2 /* SDL2main.xcodeproj */,
|
||||
4DEA3F7F3F8009FA7EF07AA6 /* SDL2.xcodeproj */,
|
||||
);
|
||||
name = "Projects";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
0158468C18CF549300205CD2 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
4A90682A48B24B01354821FE /* libSDL2main.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
554966576A227E7B749C3EEA /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
314673287DC135CE214818AB /* libSDL2.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
113B56ED7C1954B22A5E071A /* loopwave */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 3124524079731BFA3C4A50BF /* Build configuration list for PBXNativeTarget "loopwave" */;
|
||||
buildPhases = (
|
||||
2FF255230D805866140F0D22 /* Resources */,
|
||||
33330525538751295C882206 /* Sources */,
|
||||
75C83A552FB74F98392A11C9 /* Frameworks */,
|
||||
9607AE3710C85E8F00CD1376 /* Postbuild */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
444E7A914EBA2D6A1DAB4C87 /* PBXTargetDependency */,
|
||||
50D753504D3E62603EC864E6 /* PBXTargetDependency */,
|
||||
);
|
||||
name = "loopwave";
|
||||
productInstallPath = "$(HOME)/bin";
|
||||
productName = "loopwave";
|
||||
productReference = 2B02458468CD2BA4494B5B96 /* loopwave */;
|
||||
productType = "com.apple.product-type.tool";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
08FB7793FE84155DC02AAC07 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
buildConfigurationList = 1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "loopwave" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
hasScannedForEncodings = 1;
|
||||
mainGroup = 6146648358E1392E02AB47F4 /* loopwave */;
|
||||
projectDirPath = "";
|
||||
projectReferences = (
|
||||
{
|
||||
ProductGroup = 0158468C18CF549300205CD2 /* Products */;
|
||||
ProjectRef = 7B49049B002E76D557C760E2 /* SDL2main.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 554966576A227E7B749C3EEA /* Products */;
|
||||
ProjectRef = 4DEA3F7F3F8009FA7EF07AA6 /* SDL2.xcodeproj */;
|
||||
},
|
||||
);
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
113B56ED7C1954B22A5E071A /* loopwave */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXReferenceProxy section */
|
||||
4A90682A48B24B01354821FE /* libSDL2main.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2main.a";
|
||||
remoteRef = 67037CC85B947C4B58B64EBA /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
314673287DC135CE214818AB /* libSDL2.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2.a";
|
||||
remoteRef = 032B3A303D376DC41DC118C1 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
/* End PBXReferenceProxy section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
2FF255230D805866140F0D22 /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXShellScriptBuildPhase section */
|
||||
9607AE3710C85E8F00CD1376 /* Postbuild */ = {
|
||||
isa = PBXShellScriptBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
inputPaths = (
|
||||
);
|
||||
name = Postbuild;
|
||||
outputPaths = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
shellPath = /bin/sh;
|
||||
shellScript = "if [ \"${CONFIGURATION}\" = \"Debug Universal\" ]; then\nif [ ! -d \"./Build/Debug\" ]; then mkdir -p \"./Build/Debug\"; fi\ncp \"./../../../../../test/sample.wav\" \"./Build/Debug/sample.wav\"\nfi\nif [ \"${CONFIGURATION}\" = \"Debug Native\" ]; then\nif [ ! -d \"./Build/Debug\" ]; then mkdir -p \"./Build/Debug\"; fi\ncp \"./../../../../../test/sample.wav\" \"./Build/Debug/sample.wav\"\nfi\nif [ \"${CONFIGURATION}\" = \"Release Universal\" ]; then\nif [ ! -d \"./Build/Release\" ]; then mkdir -p \"./Build/Release\"; fi\ncp \"./../../../../../test/sample.wav\" \"./Build/Release/sample.wav\"\nfi\nif [ \"${CONFIGURATION}\" = \"Release Native\" ]; then\nif [ ! -d \"./Build/Release\" ]; then mkdir -p \"./Build/Release\"; fi\ncp \"./../../../../../test/sample.wav\" \"./Build/Release/sample.wav\"\nfi";
|
||||
};
|
||||
/* End PBXShellScriptBuildPhase section */
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
33330525538751295C882206 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
062A6EDF012B6A9641AF7FB9 /* loopwave.c in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXVariantGroup section */
|
||||
/* End PBXVariantGroup section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
444E7A914EBA2D6A1DAB4C87 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2main.a";
|
||||
targetProxy = 1D5961507A4825A667DA30BA /* PBXContainerItemProxy */;
|
||||
};
|
||||
50D753504D3E62603EC864E6 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2.a";
|
||||
targetProxy = 6523111C79426E4733A759B4 /* PBXContainerItemProxy */;
|
||||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
76B1778D03FB125133045BD2 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "loopwave";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
4429168720D30A6F18D90481 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "loopwave";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
47E476F00FB06D7E72202B41 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "loopwave";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
44096789056D44FB67070CC3 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "loopwave";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
5CD870A70BA7063F1FA27524 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
39381B1472A00C7232D90364 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
6E12096A3DD64FA505A80CC4 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
597265952F4564FC62E217BB /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
3124524079731BFA3C4A50BF /* Build configuration list for PBXNativeTarget "loopwave" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
76B1778D03FB125133045BD2 /* Debug Universal */,
|
||||
4429168720D30A6F18D90481 /* Debug Native */,
|
||||
47E476F00FB06D7E72202B41 /* Release Universal */,
|
||||
44096789056D44FB67070CC3 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "loopwave" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
5CD870A70BA7063F1FA27524 /* Debug Universal */,
|
||||
39381B1472A00C7232D90364 /* Debug Native */,
|
||||
6E12096A3DD64FA505A80CC4 /* Release Universal */,
|
||||
597265952F4564FC62E217BB /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
|
||||
};
|
||||
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
|
||||
}
|
457
premake/Xcode/Xcode3/tests/testatomic/testatomic.xcodeproj/project.pbxproj
Executable file
457
premake/Xcode/Xcode3/tests/testatomic/testatomic.xcodeproj/project.pbxproj
Executable file
|
@ -0,0 +1,457 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 45;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
57876D99114444BD06CB79EA /* testatomic.c in Sources */ = {isa = PBXBuildFile; fileRef = 54330859254103D731515D90 /* testatomic.c */; };
|
||||
17F567BB421716785F6439CF /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 09A150504E10263515C14414 /* AudioToolbox.framework */; };
|
||||
77EF12F73F887CA74A7B7FC9 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6D4C19F323B75D856812787F /* AudioUnit.framework */; };
|
||||
52DF34A54896760C11C25AE6 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1AE359BD2A9673542E98181F /* Cocoa.framework */; };
|
||||
02FE0EBC709352A14E8D4A6D /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 37540DD006A96C3C08D41CFE /* CoreAudio.framework */; };
|
||||
361F6EC20955561325544E5D /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 574C4DD436087C51492D43B3 /* IOKit.framework */; };
|
||||
31F569F0245E3AA002C15E11 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 45B72D0141D071FF4C41486E /* Carbon.framework */; };
|
||||
32C4089A55DC6316410D6182 /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 454029B87D165A3370306EFD /* ForceFeedback.framework */; };
|
||||
1C410038088F223D5F162F97 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3BCB496E70D34CB5241D1087 /* CoreFoundation.framework */; };
|
||||
69E226E7448C5F956D780C75 /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 008150AD1F8441BF65833853 /* OpenGL.framework */; };
|
||||
61A726E729BA1BC965100ED9 /* libSDL2main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 26805ECB03C10C4C10583FB0 /* libSDL2main.a */; };
|
||||
5A1E047B453532082C883A0A /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 70163DCB7F7A4A513D3E4F7A /* libSDL2.a */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
035B6577156746CC13202FA0 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 5B9110BF2C18721424265DC2 /* SDL2main.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 58DC62993160374E09FF7AD6;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
6F8D40AE773C25A10EA02D59 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 5B9110BF2C18721424265DC2 /* SDL2main.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 0E7126A94A11494963D3548B;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
251D257954BF783F084324FA /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 61946CBF2E6837466BFE7B96 /* SDL2.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 07D004B11E733F1F0EA93105;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
38C722631617477D60904E7D /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 61946CBF2E6837466BFE7B96 /* SDL2.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 58C10ED14175754444033E0E;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
54330859254103D731515D90 /* testatomic.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testatomic.c"; path = "../../../../../test/testatomic.c"; sourceTree = "<group>"; };
|
||||
09A150504E10263515C14414 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioToolbox.framework"; path = "/System/Library/Frameworks/AudioToolbox.framework"; sourceTree = "<absolute>"; };
|
||||
6D4C19F323B75D856812787F /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioUnit.framework"; path = "/System/Library/Frameworks/AudioUnit.framework"; sourceTree = "<absolute>"; };
|
||||
1AE359BD2A9673542E98181F /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Cocoa.framework"; path = "/System/Library/Frameworks/Cocoa.framework"; sourceTree = "<absolute>"; };
|
||||
37540DD006A96C3C08D41CFE /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreAudio.framework"; path = "/System/Library/Frameworks/CoreAudio.framework"; sourceTree = "<absolute>"; };
|
||||
574C4DD436087C51492D43B3 /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "IOKit.framework"; path = "/System/Library/Frameworks/IOKit.framework"; sourceTree = "<absolute>"; };
|
||||
45B72D0141D071FF4C41486E /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Carbon.framework"; path = "/System/Library/Frameworks/Carbon.framework"; sourceTree = "<absolute>"; };
|
||||
454029B87D165A3370306EFD /* ForceFeedback.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "ForceFeedback.framework"; path = "/System/Library/Frameworks/ForceFeedback.framework"; sourceTree = "<absolute>"; };
|
||||
3BCB496E70D34CB5241D1087 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreFoundation.framework"; path = "/System/Library/Frameworks/CoreFoundation.framework"; sourceTree = "<absolute>"; };
|
||||
008150AD1F8441BF65833853 /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "OpenGL.framework"; path = "/System/Library/Frameworks/OpenGL.framework"; sourceTree = "<absolute>"; };
|
||||
46F7356A68904D295FBF06D3 /* testatomic */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = "testatomic"; path = "testatomic"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
5B9110BF2C18721424265DC2 /* SDL2main.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2main.xcodeproj"; path = "../../SDL2main/SDL2main.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
61946CBF2E6837466BFE7B96 /* SDL2.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2.xcodeproj"; path = "../../SDL2/SDL2.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
134752C077415E7D02F75654 /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
17F567BB421716785F6439CF /* AudioToolbox.framework in Frameworks */,
|
||||
77EF12F73F887CA74A7B7FC9 /* AudioUnit.framework in Frameworks */,
|
||||
52DF34A54896760C11C25AE6 /* Cocoa.framework in Frameworks */,
|
||||
02FE0EBC709352A14E8D4A6D /* CoreAudio.framework in Frameworks */,
|
||||
361F6EC20955561325544E5D /* IOKit.framework in Frameworks */,
|
||||
31F569F0245E3AA002C15E11 /* Carbon.framework in Frameworks */,
|
||||
32C4089A55DC6316410D6182 /* ForceFeedback.framework in Frameworks */,
|
||||
1C410038088F223D5F162F97 /* CoreFoundation.framework in Frameworks */,
|
||||
69E226E7448C5F956D780C75 /* OpenGL.framework in Frameworks */,
|
||||
61A726E729BA1BC965100ED9 /* libSDL2main.a in Frameworks */,
|
||||
5A1E047B453532082C883A0A /* libSDL2.a in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
212A608F0CC1571F52F633FB /* testatomic */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
4F043DFE10616AE900733E45 /* test */,
|
||||
7C6009560D8A127A1B255032 /* Frameworks */,
|
||||
00DF69976BA67FBF7BC84829 /* Products */,
|
||||
7F2426214CD21294606E6093 /* Projects */,
|
||||
);
|
||||
name = "testatomic";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
4F043DFE10616AE900733E45 /* test */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
54330859254103D731515D90 /* testatomic.c */,
|
||||
);
|
||||
name = "test";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
7C6009560D8A127A1B255032 /* Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
09A150504E10263515C14414 /* AudioToolbox.framework */,
|
||||
6D4C19F323B75D856812787F /* AudioUnit.framework */,
|
||||
1AE359BD2A9673542E98181F /* Cocoa.framework */,
|
||||
37540DD006A96C3C08D41CFE /* CoreAudio.framework */,
|
||||
574C4DD436087C51492D43B3 /* IOKit.framework */,
|
||||
45B72D0141D071FF4C41486E /* Carbon.framework */,
|
||||
454029B87D165A3370306EFD /* ForceFeedback.framework */,
|
||||
3BCB496E70D34CB5241D1087 /* CoreFoundation.framework */,
|
||||
008150AD1F8441BF65833853 /* OpenGL.framework */,
|
||||
);
|
||||
name = "Frameworks";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
00DF69976BA67FBF7BC84829 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
46F7356A68904D295FBF06D3 /* testatomic */,
|
||||
);
|
||||
name = "Products";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
7F2426214CD21294606E6093 /* Projects */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
5B9110BF2C18721424265DC2 /* SDL2main.xcodeproj */,
|
||||
61946CBF2E6837466BFE7B96 /* SDL2.xcodeproj */,
|
||||
);
|
||||
name = "Projects";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
108F3ABD6F7A3DDF29277E81 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
26805ECB03C10C4C10583FB0 /* libSDL2main.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
20C85614704965D87A8831CD /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
70163DCB7F7A4A513D3E4F7A /* libSDL2.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
415225415C793CF93B6C48BB /* testatomic */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 1BEB0C2039841455059663BA /* Build configuration list for PBXNativeTarget "testatomic" */;
|
||||
buildPhases = (
|
||||
506603C11BBD535932F232B1 /* Resources */,
|
||||
30662E732E7067B865390F2F /* Sources */,
|
||||
134752C077415E7D02F75654 /* Frameworks */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
6CCA644F4019420773C07A30 /* PBXTargetDependency */,
|
||||
07855B5D48D922A52EFF1306 /* PBXTargetDependency */,
|
||||
);
|
||||
name = "testatomic";
|
||||
productInstallPath = "$(HOME)/bin";
|
||||
productName = "testatomic";
|
||||
productReference = 46F7356A68904D295FBF06D3 /* testatomic */;
|
||||
productType = "com.apple.product-type.tool";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
08FB7793FE84155DC02AAC07 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
buildConfigurationList = 1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testatomic" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
hasScannedForEncodings = 1;
|
||||
mainGroup = 212A608F0CC1571F52F633FB /* testatomic */;
|
||||
projectDirPath = "";
|
||||
projectReferences = (
|
||||
{
|
||||
ProductGroup = 108F3ABD6F7A3DDF29277E81 /* Products */;
|
||||
ProjectRef = 5B9110BF2C18721424265DC2 /* SDL2main.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 20C85614704965D87A8831CD /* Products */;
|
||||
ProjectRef = 61946CBF2E6837466BFE7B96 /* SDL2.xcodeproj */;
|
||||
},
|
||||
);
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
415225415C793CF93B6C48BB /* testatomic */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXReferenceProxy section */
|
||||
26805ECB03C10C4C10583FB0 /* libSDL2main.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2main.a";
|
||||
remoteRef = 035B6577156746CC13202FA0 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
70163DCB7F7A4A513D3E4F7A /* libSDL2.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2.a";
|
||||
remoteRef = 251D257954BF783F084324FA /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
/* End PBXReferenceProxy section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
506603C11BBD535932F232B1 /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
30662E732E7067B865390F2F /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
57876D99114444BD06CB79EA /* testatomic.c in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXVariantGroup section */
|
||||
/* End PBXVariantGroup section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
6CCA644F4019420773C07A30 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2main.a";
|
||||
targetProxy = 6F8D40AE773C25A10EA02D59 /* PBXContainerItemProxy */;
|
||||
};
|
||||
07855B5D48D922A52EFF1306 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2.a";
|
||||
targetProxy = 38C722631617477D60904E7D /* PBXContainerItemProxy */;
|
||||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
0059059B309E03CE78EC0408 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testatomic";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
59BF346A32B248880DDA7290 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testatomic";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
3EBA4B4B351A446C3FBB385A /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testatomic";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
6430394B78573C0F285F23A1 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testatomic";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
66B718A43B48147F4C584EE0 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
589213A76C373A4B3FAF174E /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
21955E8308B20083425838E3 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
3C6B53B876BA4FE97C24513D /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
1BEB0C2039841455059663BA /* Build configuration list for PBXNativeTarget "testatomic" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
0059059B309E03CE78EC0408 /* Debug Universal */,
|
||||
59BF346A32B248880DDA7290 /* Debug Native */,
|
||||
3EBA4B4B351A446C3FBB385A /* Release Universal */,
|
||||
6430394B78573C0F285F23A1 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testatomic" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
66B718A43B48147F4C584EE0 /* Debug Universal */,
|
||||
589213A76C373A4B3FAF174E /* Debug Native */,
|
||||
21955E8308B20083425838E3 /* Release Universal */,
|
||||
3C6B53B876BA4FE97C24513D /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
|
||||
};
|
||||
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
|
||||
}
|
457
premake/Xcode/Xcode3/tests/testaudioinfo/testaudioinfo.xcodeproj/project.pbxproj
Executable file
457
premake/Xcode/Xcode3/tests/testaudioinfo/testaudioinfo.xcodeproj/project.pbxproj
Executable file
|
@ -0,0 +1,457 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 45;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
7D983EB23BB023620FDC631B /* testaudioinfo.c in Sources */ = {isa = PBXBuildFile; fileRef = 6AAB0BDF19C76D3D44A60FC7 /* testaudioinfo.c */; };
|
||||
2E3807C25FFB079D6F30596E /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 02CA1F0E0C8467F463624ADD /* AudioToolbox.framework */; };
|
||||
187423281AF4481F16147BB7 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5BCD1AE972C161E11F071578 /* AudioUnit.framework */; };
|
||||
11950DD740FE6A3749CC2DC7 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 31E736320F1E3B7452516A65 /* Cocoa.framework */; };
|
||||
3EC26A2B6C6512FD2BE143E6 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 220C55811EEC52AA1CBD3ED5 /* CoreAudio.framework */; };
|
||||
69A76E9B0F5C17A229A66F1A /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5FD87BFB5C244C2B46E02D9A /* IOKit.framework */; };
|
||||
46C36AF300D05D543C255910 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1F045D6C671C7A110BA74023 /* Carbon.framework */; };
|
||||
200D3BD6702F27A77E1F56EA /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 36D61BA23D7303CA76E47619 /* ForceFeedback.framework */; };
|
||||
1A2A488E19AB4A3438E4145C /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4911023B0A6C6D8B460C750E /* CoreFoundation.framework */; };
|
||||
1C60207D19CE379667A66146 /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A445DDC49FF3F2D2F335A6E /* OpenGL.framework */; };
|
||||
177E722D6B0D287924706E29 /* libSDL2main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4CE709F778906FDC607E7935 /* libSDL2main.a */; };
|
||||
45D35D816F2C3A8440B327FB /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 7DF04DB11F794E8A077A0454 /* libSDL2.a */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
11EB0CF20F6227641BBC548E /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 76F81FA525C6233E40D2394E /* SDL2main.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 58DC62993160374E09FF7AD6;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
5480371703F501BF596B2FC6 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 76F81FA525C6233E40D2394E /* SDL2main.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 0E7126A94A11494963D3548B;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
438C359D597141EF6E1A0AD9 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 75181E2E17BE3DDB19AC1FB6 /* SDL2.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 07D004B11E733F1F0EA93105;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
4FFC5D4964944802134720DC /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 75181E2E17BE3DDB19AC1FB6 /* SDL2.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 58C10ED14175754444033E0E;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
6AAB0BDF19C76D3D44A60FC7 /* testaudioinfo.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testaudioinfo.c"; path = "../../../../../test/testaudioinfo.c"; sourceTree = "<group>"; };
|
||||
02CA1F0E0C8467F463624ADD /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioToolbox.framework"; path = "/System/Library/Frameworks/AudioToolbox.framework"; sourceTree = "<absolute>"; };
|
||||
5BCD1AE972C161E11F071578 /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioUnit.framework"; path = "/System/Library/Frameworks/AudioUnit.framework"; sourceTree = "<absolute>"; };
|
||||
31E736320F1E3B7452516A65 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Cocoa.framework"; path = "/System/Library/Frameworks/Cocoa.framework"; sourceTree = "<absolute>"; };
|
||||
220C55811EEC52AA1CBD3ED5 /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreAudio.framework"; path = "/System/Library/Frameworks/CoreAudio.framework"; sourceTree = "<absolute>"; };
|
||||
5FD87BFB5C244C2B46E02D9A /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "IOKit.framework"; path = "/System/Library/Frameworks/IOKit.framework"; sourceTree = "<absolute>"; };
|
||||
1F045D6C671C7A110BA74023 /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Carbon.framework"; path = "/System/Library/Frameworks/Carbon.framework"; sourceTree = "<absolute>"; };
|
||||
36D61BA23D7303CA76E47619 /* ForceFeedback.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "ForceFeedback.framework"; path = "/System/Library/Frameworks/ForceFeedback.framework"; sourceTree = "<absolute>"; };
|
||||
4911023B0A6C6D8B460C750E /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreFoundation.framework"; path = "/System/Library/Frameworks/CoreFoundation.framework"; sourceTree = "<absolute>"; };
|
||||
5A445DDC49FF3F2D2F335A6E /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "OpenGL.framework"; path = "/System/Library/Frameworks/OpenGL.framework"; sourceTree = "<absolute>"; };
|
||||
36B537061DB55E06101D603D /* testaudioinfo */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = "testaudioinfo"; path = "testaudioinfo"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
76F81FA525C6233E40D2394E /* SDL2main.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2main.xcodeproj"; path = "../../SDL2main/SDL2main.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
75181E2E17BE3DDB19AC1FB6 /* SDL2.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2.xcodeproj"; path = "../../SDL2/SDL2.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
575531557DAD0AA659EC2F8D /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
2E3807C25FFB079D6F30596E /* AudioToolbox.framework in Frameworks */,
|
||||
187423281AF4481F16147BB7 /* AudioUnit.framework in Frameworks */,
|
||||
11950DD740FE6A3749CC2DC7 /* Cocoa.framework in Frameworks */,
|
||||
3EC26A2B6C6512FD2BE143E6 /* CoreAudio.framework in Frameworks */,
|
||||
69A76E9B0F5C17A229A66F1A /* IOKit.framework in Frameworks */,
|
||||
46C36AF300D05D543C255910 /* Carbon.framework in Frameworks */,
|
||||
200D3BD6702F27A77E1F56EA /* ForceFeedback.framework in Frameworks */,
|
||||
1A2A488E19AB4A3438E4145C /* CoreFoundation.framework in Frameworks */,
|
||||
1C60207D19CE379667A66146 /* OpenGL.framework in Frameworks */,
|
||||
177E722D6B0D287924706E29 /* libSDL2main.a in Frameworks */,
|
||||
45D35D816F2C3A8440B327FB /* libSDL2.a in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
2F800DA22701573041067203 /* testaudioinfo */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
305F699367EA668A74457BEA /* test */,
|
||||
317A67855A065AB524B17024 /* Frameworks */,
|
||||
76C8571C169A70E415E32AD4 /* Products */,
|
||||
0487685B323E227622CB3FD7 /* Projects */,
|
||||
);
|
||||
name = "testaudioinfo";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
305F699367EA668A74457BEA /* test */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
6AAB0BDF19C76D3D44A60FC7 /* testaudioinfo.c */,
|
||||
);
|
||||
name = "test";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
317A67855A065AB524B17024 /* Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
02CA1F0E0C8467F463624ADD /* AudioToolbox.framework */,
|
||||
5BCD1AE972C161E11F071578 /* AudioUnit.framework */,
|
||||
31E736320F1E3B7452516A65 /* Cocoa.framework */,
|
||||
220C55811EEC52AA1CBD3ED5 /* CoreAudio.framework */,
|
||||
5FD87BFB5C244C2B46E02D9A /* IOKit.framework */,
|
||||
1F045D6C671C7A110BA74023 /* Carbon.framework */,
|
||||
36D61BA23D7303CA76E47619 /* ForceFeedback.framework */,
|
||||
4911023B0A6C6D8B460C750E /* CoreFoundation.framework */,
|
||||
5A445DDC49FF3F2D2F335A6E /* OpenGL.framework */,
|
||||
);
|
||||
name = "Frameworks";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
76C8571C169A70E415E32AD4 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
36B537061DB55E06101D603D /* testaudioinfo */,
|
||||
);
|
||||
name = "Products";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
0487685B323E227622CB3FD7 /* Projects */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
76F81FA525C6233E40D2394E /* SDL2main.xcodeproj */,
|
||||
75181E2E17BE3DDB19AC1FB6 /* SDL2.xcodeproj */,
|
||||
);
|
||||
name = "Projects";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
0AE37B0B40D661BA1E6D3683 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
4CE709F778906FDC607E7935 /* libSDL2main.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
1D9604843684239C18526ED2 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
7DF04DB11F794E8A077A0454 /* libSDL2.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
4B3516596A75307554C0362C /* testaudioinfo */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 5F9804010243275821A85AA7 /* Build configuration list for PBXNativeTarget "testaudioinfo" */;
|
||||
buildPhases = (
|
||||
474D223C1A7F40B75D6F585D /* Resources */,
|
||||
66FB20826B0E24E80F4C4F60 /* Sources */,
|
||||
575531557DAD0AA659EC2F8D /* Frameworks */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
71194949090F64EF33633A28 /* PBXTargetDependency */,
|
||||
696E490D34BC5E13449D52A6 /* PBXTargetDependency */,
|
||||
);
|
||||
name = "testaudioinfo";
|
||||
productInstallPath = "$(HOME)/bin";
|
||||
productName = "testaudioinfo";
|
||||
productReference = 36B537061DB55E06101D603D /* testaudioinfo */;
|
||||
productType = "com.apple.product-type.tool";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
08FB7793FE84155DC02AAC07 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
buildConfigurationList = 1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testaudioinfo" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
hasScannedForEncodings = 1;
|
||||
mainGroup = 2F800DA22701573041067203 /* testaudioinfo */;
|
||||
projectDirPath = "";
|
||||
projectReferences = (
|
||||
{
|
||||
ProductGroup = 0AE37B0B40D661BA1E6D3683 /* Products */;
|
||||
ProjectRef = 76F81FA525C6233E40D2394E /* SDL2main.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 1D9604843684239C18526ED2 /* Products */;
|
||||
ProjectRef = 75181E2E17BE3DDB19AC1FB6 /* SDL2.xcodeproj */;
|
||||
},
|
||||
);
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
4B3516596A75307554C0362C /* testaudioinfo */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXReferenceProxy section */
|
||||
4CE709F778906FDC607E7935 /* libSDL2main.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2main.a";
|
||||
remoteRef = 11EB0CF20F6227641BBC548E /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
7DF04DB11F794E8A077A0454 /* libSDL2.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2.a";
|
||||
remoteRef = 438C359D597141EF6E1A0AD9 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
/* End PBXReferenceProxy section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
474D223C1A7F40B75D6F585D /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
66FB20826B0E24E80F4C4F60 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
7D983EB23BB023620FDC631B /* testaudioinfo.c in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXVariantGroup section */
|
||||
/* End PBXVariantGroup section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
71194949090F64EF33633A28 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2main.a";
|
||||
targetProxy = 5480371703F501BF596B2FC6 /* PBXContainerItemProxy */;
|
||||
};
|
||||
696E490D34BC5E13449D52A6 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2.a";
|
||||
targetProxy = 4FFC5D4964944802134720DC /* PBXContainerItemProxy */;
|
||||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
7C4539DF61E102A0092563DD /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testaudioinfo";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
709D6AC8015263455B1E4001 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testaudioinfo";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
54AF607B62B6325307AF2490 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testaudioinfo";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
2CC1663213CF200A0F3B7530 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testaudioinfo";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
458E213409073A93136E2B1A /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
0DC7361B4B095F1630AB44F1 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
1D0A21EE328F5FA61BA71A6C /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
41A348A7712773961D725869 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
5F9804010243275821A85AA7 /* Build configuration list for PBXNativeTarget "testaudioinfo" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
7C4539DF61E102A0092563DD /* Debug Universal */,
|
||||
709D6AC8015263455B1E4001 /* Debug Native */,
|
||||
54AF607B62B6325307AF2490 /* Release Universal */,
|
||||
2CC1663213CF200A0F3B7530 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testaudioinfo" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
458E213409073A93136E2B1A /* Debug Universal */,
|
||||
0DC7361B4B095F1630AB44F1 /* Debug Native */,
|
||||
1D0A21EE328F5FA61BA71A6C /* Release Universal */,
|
||||
41A348A7712773961D725869 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
|
||||
};
|
||||
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
|
||||
}
|
|
@ -0,0 +1,570 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 45;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
2F335BE80DE0020E203E5DD8 /* testautomation.c in Sources */ = {isa = PBXBuildFile; fileRef = 794762FD04D1549934E159CD /* testautomation.c */; };
|
||||
653716B97F514F1115D6458F /* testautomation_audio.c in Sources */ = {isa = PBXBuildFile; fileRef = 471E0D47498B7B5274FB14FE /* testautomation_audio.c */; };
|
||||
7C22594E259C512B68C3074A /* testautomation_clipboard.c in Sources */ = {isa = PBXBuildFile; fileRef = 4F3953A43A3A4F8F4C8E36A4 /* testautomation_clipboard.c */; };
|
||||
0D0C2F586E93033058EB4F2D /* testautomation_events.c in Sources */ = {isa = PBXBuildFile; fileRef = 2786614254EC5FB566462683 /* testautomation_events.c */; };
|
||||
0EF101106870459C05C777E5 /* testautomation_keyboard.c in Sources */ = {isa = PBXBuildFile; fileRef = 3D67397E3717790131435254 /* testautomation_keyboard.c */; };
|
||||
4473155D1CA524123B156875 /* testautomation_main.c in Sources */ = {isa = PBXBuildFile; fileRef = 5BEC6F3916D7143614DF3D74 /* testautomation_main.c */; };
|
||||
2C2A04F453191DD549990B38 /* testautomation_mouse.c in Sources */ = {isa = PBXBuildFile; fileRef = 6D017E6145BD211645712A51 /* testautomation_mouse.c */; };
|
||||
174141BE560F099B2C951FF6 /* testautomation_pixels.c in Sources */ = {isa = PBXBuildFile; fileRef = 435E6BF81AB9117F68EB441C /* testautomation_pixels.c */; };
|
||||
15E2389B6AB717B517F50AA9 /* testautomation_platform.c in Sources */ = {isa = PBXBuildFile; fileRef = 0055527C0684494769333104 /* testautomation_platform.c */; };
|
||||
4E710EFA4F50233E3BB50A17 /* testautomation_rect.c in Sources */ = {isa = PBXBuildFile; fileRef = 0DC13053355641975EF14CFC /* testautomation_rect.c */; };
|
||||
07001C17388A1B8604CF33C9 /* testautomation_render.c in Sources */ = {isa = PBXBuildFile; fileRef = 7EE110555956273251AE02BD /* testautomation_render.c */; };
|
||||
115828D60DF755371C7E4B6F /* testautomation_rwops.c in Sources */ = {isa = PBXBuildFile; fileRef = 05F752B051CB188A1FA10AE0 /* testautomation_rwops.c */; };
|
||||
17E762DE07227FFC234A7E9B /* testautomation_sdltest.c in Sources */ = {isa = PBXBuildFile; fileRef = 140F10664DCC4A491D2D06DB /* testautomation_sdltest.c */; };
|
||||
3A1421F37C845F1F1A9A1691 /* testautomation_stdlib.c in Sources */ = {isa = PBXBuildFile; fileRef = 26AF4A18290748D322B947F5 /* testautomation_stdlib.c */; };
|
||||
491B449B228565596C3C6841 /* testautomation_surface.c in Sources */ = {isa = PBXBuildFile; fileRef = 5F0C25EE376B02EA064B50F6 /* testautomation_surface.c */; };
|
||||
4EE3570C11213BFA50727385 /* testautomation_syswm.c in Sources */ = {isa = PBXBuildFile; fileRef = 1267615F52DF35C27BFC749A /* testautomation_syswm.c */; };
|
||||
15C3490D20032CC168A5510A /* testautomation_timer.c in Sources */ = {isa = PBXBuildFile; fileRef = 30EA083B11207D622DDB12FC /* testautomation_timer.c */; };
|
||||
0D3D4F4B7C2244F36B98001A /* testautomation_video.c in Sources */ = {isa = PBXBuildFile; fileRef = 799007AB7FD4531345B703C3 /* testautomation_video.c */; };
|
||||
634F703209AF4BF432C670FF /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 525D58370F4C52CF3B2C6C24 /* AudioToolbox.framework */; };
|
||||
2FD209F3507D70B84CE97341 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1CA133CE381F37C11A1B0BEB /* AudioUnit.framework */; };
|
||||
701A5D0F305059164EA22D84 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 69CB409266666CB01DB03008 /* Cocoa.framework */; };
|
||||
3FD61CBC1F3C541624184811 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6448343A600A31F50A122DE9 /* CoreAudio.framework */; };
|
||||
472C522A706B317850BA6C51 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 11861357591E56A023ED491D /* IOKit.framework */; };
|
||||
054B18C7468D589C15E05FCA /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B20422947087C5367012759 /* Carbon.framework */; };
|
||||
22AD0BEA6F4E275414225D5D /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 58C11BD2221C785317CF3370 /* ForceFeedback.framework */; };
|
||||
3B8A7FF62F4A2D17470C080E /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3A682EF21FA87CBA3C2B3F7D /* CoreFoundation.framework */; };
|
||||
14960DFD058B085471CB4AB3 /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 77D94DCC4A8B73683E874CF3 /* OpenGL.framework */; };
|
||||
7C8926195FA63E4B429155D2 /* libSDL2main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 65657808084F160069055C6D /* libSDL2main.a */; };
|
||||
77A0414679C77DF659307C2A /* libSDL2test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 30744F3724232CC61005573B /* libSDL2test.a */; };
|
||||
667727B43C5E63914EDD2933 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 51F53A75641962D9541A7DD9 /* libSDL2.a */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
1DCE473D01537CA077766F74 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 6906495449E9743407E812AA /* SDL2main.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 58DC62993160374E09FF7AD6;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
4570617838BB3896391D43EC /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 6906495449E9743407E812AA /* SDL2main.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 0E7126A94A11494963D3548B;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
4893660C40505DFE57DA4601 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 0058171435E569F359901CA9 /* SDL2test.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 1E1175156F97314C291323CB;
|
||||
remoteInfo = "libSDL2test.a";
|
||||
};
|
||||
19D24173024D0FC63B313020 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 0058171435E569F359901CA9 /* SDL2test.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 7CD70F5D43DA554D66287CFC;
|
||||
remoteInfo = "libSDL2test.a";
|
||||
};
|
||||
2B800D747BF326C622B92D93 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 29FC6095786D7CDA66E54FA2 /* SDL2.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 07D004B11E733F1F0EA93105;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
2325525D7B406481596F1ACA /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 29FC6095786D7CDA66E54FA2 /* SDL2.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 58C10ED14175754444033E0E;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
794762FD04D1549934E159CD /* testautomation.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testautomation.c"; path = "../../../../../test/testautomation.c"; sourceTree = "<group>"; };
|
||||
471E0D47498B7B5274FB14FE /* testautomation_audio.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testautomation_audio.c"; path = "../../../../../test/testautomation_audio.c"; sourceTree = "<group>"; };
|
||||
4F3953A43A3A4F8F4C8E36A4 /* testautomation_clipboard.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testautomation_clipboard.c"; path = "../../../../../test/testautomation_clipboard.c"; sourceTree = "<group>"; };
|
||||
2786614254EC5FB566462683 /* testautomation_events.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testautomation_events.c"; path = "../../../../../test/testautomation_events.c"; sourceTree = "<group>"; };
|
||||
3D67397E3717790131435254 /* testautomation_keyboard.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testautomation_keyboard.c"; path = "../../../../../test/testautomation_keyboard.c"; sourceTree = "<group>"; };
|
||||
5BEC6F3916D7143614DF3D74 /* testautomation_main.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testautomation_main.c"; path = "../../../../../test/testautomation_main.c"; sourceTree = "<group>"; };
|
||||
6D017E6145BD211645712A51 /* testautomation_mouse.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testautomation_mouse.c"; path = "../../../../../test/testautomation_mouse.c"; sourceTree = "<group>"; };
|
||||
435E6BF81AB9117F68EB441C /* testautomation_pixels.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testautomation_pixels.c"; path = "../../../../../test/testautomation_pixels.c"; sourceTree = "<group>"; };
|
||||
0055527C0684494769333104 /* testautomation_platform.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testautomation_platform.c"; path = "../../../../../test/testautomation_platform.c"; sourceTree = "<group>"; };
|
||||
0DC13053355641975EF14CFC /* testautomation_rect.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testautomation_rect.c"; path = "../../../../../test/testautomation_rect.c"; sourceTree = "<group>"; };
|
||||
7EE110555956273251AE02BD /* testautomation_render.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testautomation_render.c"; path = "../../../../../test/testautomation_render.c"; sourceTree = "<group>"; };
|
||||
05F752B051CB188A1FA10AE0 /* testautomation_rwops.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testautomation_rwops.c"; path = "../../../../../test/testautomation_rwops.c"; sourceTree = "<group>"; };
|
||||
140F10664DCC4A491D2D06DB /* testautomation_sdltest.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testautomation_sdltest.c"; path = "../../../../../test/testautomation_sdltest.c"; sourceTree = "<group>"; };
|
||||
26AF4A18290748D322B947F5 /* testautomation_stdlib.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testautomation_stdlib.c"; path = "../../../../../test/testautomation_stdlib.c"; sourceTree = "<group>"; };
|
||||
3F19057030C97AB601CD4266 /* testautomation_suites.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "testautomation_suites.h"; path = "../../../../../test/testautomation_suites.h"; sourceTree = "<group>"; };
|
||||
5F0C25EE376B02EA064B50F6 /* testautomation_surface.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testautomation_surface.c"; path = "../../../../../test/testautomation_surface.c"; sourceTree = "<group>"; };
|
||||
1267615F52DF35C27BFC749A /* testautomation_syswm.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testautomation_syswm.c"; path = "../../../../../test/testautomation_syswm.c"; sourceTree = "<group>"; };
|
||||
30EA083B11207D622DDB12FC /* testautomation_timer.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testautomation_timer.c"; path = "../../../../../test/testautomation_timer.c"; sourceTree = "<group>"; };
|
||||
799007AB7FD4531345B703C3 /* testautomation_video.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testautomation_video.c"; path = "../../../../../test/testautomation_video.c"; sourceTree = "<group>"; };
|
||||
525D58370F4C52CF3B2C6C24 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioToolbox.framework"; path = "/System/Library/Frameworks/AudioToolbox.framework"; sourceTree = "<absolute>"; };
|
||||
1CA133CE381F37C11A1B0BEB /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioUnit.framework"; path = "/System/Library/Frameworks/AudioUnit.framework"; sourceTree = "<absolute>"; };
|
||||
69CB409266666CB01DB03008 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Cocoa.framework"; path = "/System/Library/Frameworks/Cocoa.framework"; sourceTree = "<absolute>"; };
|
||||
6448343A600A31F50A122DE9 /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreAudio.framework"; path = "/System/Library/Frameworks/CoreAudio.framework"; sourceTree = "<absolute>"; };
|
||||
11861357591E56A023ED491D /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "IOKit.framework"; path = "/System/Library/Frameworks/IOKit.framework"; sourceTree = "<absolute>"; };
|
||||
3B20422947087C5367012759 /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Carbon.framework"; path = "/System/Library/Frameworks/Carbon.framework"; sourceTree = "<absolute>"; };
|
||||
58C11BD2221C785317CF3370 /* ForceFeedback.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "ForceFeedback.framework"; path = "/System/Library/Frameworks/ForceFeedback.framework"; sourceTree = "<absolute>"; };
|
||||
3A682EF21FA87CBA3C2B3F7D /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreFoundation.framework"; path = "/System/Library/Frameworks/CoreFoundation.framework"; sourceTree = "<absolute>"; };
|
||||
77D94DCC4A8B73683E874CF3 /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "OpenGL.framework"; path = "/System/Library/Frameworks/OpenGL.framework"; sourceTree = "<absolute>"; };
|
||||
75027F0E24CC623E719313AB /* testautomation */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = "testautomation"; path = "testautomation"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
6906495449E9743407E812AA /* SDL2main.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2main.xcodeproj"; path = "../../SDL2main/SDL2main.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
0058171435E569F359901CA9 /* SDL2test.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2test.xcodeproj"; path = "../../SDL2test/SDL2test.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
29FC6095786D7CDA66E54FA2 /* SDL2.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2.xcodeproj"; path = "../../SDL2/SDL2.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
5D6A013F76D150BA04E85B78 /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
634F703209AF4BF432C670FF /* AudioToolbox.framework in Frameworks */,
|
||||
2FD209F3507D70B84CE97341 /* AudioUnit.framework in Frameworks */,
|
||||
701A5D0F305059164EA22D84 /* Cocoa.framework in Frameworks */,
|
||||
3FD61CBC1F3C541624184811 /* CoreAudio.framework in Frameworks */,
|
||||
472C522A706B317850BA6C51 /* IOKit.framework in Frameworks */,
|
||||
054B18C7468D589C15E05FCA /* Carbon.framework in Frameworks */,
|
||||
22AD0BEA6F4E275414225D5D /* ForceFeedback.framework in Frameworks */,
|
||||
3B8A7FF62F4A2D17470C080E /* CoreFoundation.framework in Frameworks */,
|
||||
14960DFD058B085471CB4AB3 /* OpenGL.framework in Frameworks */,
|
||||
7C8926195FA63E4B429155D2 /* libSDL2main.a in Frameworks */,
|
||||
77A0414679C77DF659307C2A /* libSDL2test.a in Frameworks */,
|
||||
667727B43C5E63914EDD2933 /* libSDL2.a in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
202F2A541FD450F927A57FBC /* testautomation */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
1B64500B363640606F5E14E5 /* test */,
|
||||
363D69995B857A2815A13DC6 /* Frameworks */,
|
||||
60B1254425E50F951FCA074B /* Products */,
|
||||
0A2C78C572E328E306C02744 /* Projects */,
|
||||
);
|
||||
name = "testautomation";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
1B64500B363640606F5E14E5 /* test */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
794762FD04D1549934E159CD /* testautomation.c */,
|
||||
471E0D47498B7B5274FB14FE /* testautomation_audio.c */,
|
||||
4F3953A43A3A4F8F4C8E36A4 /* testautomation_clipboard.c */,
|
||||
2786614254EC5FB566462683 /* testautomation_events.c */,
|
||||
3D67397E3717790131435254 /* testautomation_keyboard.c */,
|
||||
5BEC6F3916D7143614DF3D74 /* testautomation_main.c */,
|
||||
6D017E6145BD211645712A51 /* testautomation_mouse.c */,
|
||||
435E6BF81AB9117F68EB441C /* testautomation_pixels.c */,
|
||||
0055527C0684494769333104 /* testautomation_platform.c */,
|
||||
0DC13053355641975EF14CFC /* testautomation_rect.c */,
|
||||
7EE110555956273251AE02BD /* testautomation_render.c */,
|
||||
05F752B051CB188A1FA10AE0 /* testautomation_rwops.c */,
|
||||
140F10664DCC4A491D2D06DB /* testautomation_sdltest.c */,
|
||||
26AF4A18290748D322B947F5 /* testautomation_stdlib.c */,
|
||||
3F19057030C97AB601CD4266 /* testautomation_suites.h */,
|
||||
5F0C25EE376B02EA064B50F6 /* testautomation_surface.c */,
|
||||
1267615F52DF35C27BFC749A /* testautomation_syswm.c */,
|
||||
30EA083B11207D622DDB12FC /* testautomation_timer.c */,
|
||||
799007AB7FD4531345B703C3 /* testautomation_video.c */,
|
||||
);
|
||||
name = "test";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
363D69995B857A2815A13DC6 /* Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
525D58370F4C52CF3B2C6C24 /* AudioToolbox.framework */,
|
||||
1CA133CE381F37C11A1B0BEB /* AudioUnit.framework */,
|
||||
69CB409266666CB01DB03008 /* Cocoa.framework */,
|
||||
6448343A600A31F50A122DE9 /* CoreAudio.framework */,
|
||||
11861357591E56A023ED491D /* IOKit.framework */,
|
||||
3B20422947087C5367012759 /* Carbon.framework */,
|
||||
58C11BD2221C785317CF3370 /* ForceFeedback.framework */,
|
||||
3A682EF21FA87CBA3C2B3F7D /* CoreFoundation.framework */,
|
||||
77D94DCC4A8B73683E874CF3 /* OpenGL.framework */,
|
||||
);
|
||||
name = "Frameworks";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
60B1254425E50F951FCA074B /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
75027F0E24CC623E719313AB /* testautomation */,
|
||||
);
|
||||
name = "Products";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
0A2C78C572E328E306C02744 /* Projects */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
6906495449E9743407E812AA /* SDL2main.xcodeproj */,
|
||||
0058171435E569F359901CA9 /* SDL2test.xcodeproj */,
|
||||
29FC6095786D7CDA66E54FA2 /* SDL2.xcodeproj */,
|
||||
);
|
||||
name = "Projects";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
0BDA2B645FDD3BEE211A6954 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
65657808084F160069055C6D /* libSDL2main.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
7829072B1E387FAA7F1D6362 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
30744F3724232CC61005573B /* libSDL2test.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
6E4E53E23BE56BD653904C40 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
51F53A75641962D9541A7DD9 /* libSDL2.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
586C3E63152630904E4344B7 /* testautomation */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 5BA144AB73752BB233B15E56 /* Build configuration list for PBXNativeTarget "testautomation" */;
|
||||
buildPhases = (
|
||||
602B2E997588500D28BF3D9C /* Resources */,
|
||||
5E6E466B254968535F104F95 /* Sources */,
|
||||
5D6A013F76D150BA04E85B78 /* Frameworks */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
5E91187E198B10230A423327 /* PBXTargetDependency */,
|
||||
34B918CE0EB26C3E7E5A4A83 /* PBXTargetDependency */,
|
||||
74B40BD2278E0624550E1B92 /* PBXTargetDependency */,
|
||||
);
|
||||
name = "testautomation";
|
||||
productInstallPath = "$(HOME)/bin";
|
||||
productName = "testautomation";
|
||||
productReference = 75027F0E24CC623E719313AB /* testautomation */;
|
||||
productType = "com.apple.product-type.tool";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
08FB7793FE84155DC02AAC07 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
buildConfigurationList = 1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testautomation" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
hasScannedForEncodings = 1;
|
||||
mainGroup = 202F2A541FD450F927A57FBC /* testautomation */;
|
||||
projectDirPath = "";
|
||||
projectReferences = (
|
||||
{
|
||||
ProductGroup = 0BDA2B645FDD3BEE211A6954 /* Products */;
|
||||
ProjectRef = 6906495449E9743407E812AA /* SDL2main.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 7829072B1E387FAA7F1D6362 /* Products */;
|
||||
ProjectRef = 0058171435E569F359901CA9 /* SDL2test.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 6E4E53E23BE56BD653904C40 /* Products */;
|
||||
ProjectRef = 29FC6095786D7CDA66E54FA2 /* SDL2.xcodeproj */;
|
||||
},
|
||||
);
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
586C3E63152630904E4344B7 /* testautomation */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXReferenceProxy section */
|
||||
65657808084F160069055C6D /* libSDL2main.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2main.a";
|
||||
remoteRef = 1DCE473D01537CA077766F74 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
30744F3724232CC61005573B /* libSDL2test.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2test.a";
|
||||
remoteRef = 4893660C40505DFE57DA4601 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
51F53A75641962D9541A7DD9 /* libSDL2.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2.a";
|
||||
remoteRef = 2B800D747BF326C622B92D93 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
/* End PBXReferenceProxy section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
602B2E997588500D28BF3D9C /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
5E6E466B254968535F104F95 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
2F335BE80DE0020E203E5DD8 /* testautomation.c in Sources */,
|
||||
653716B97F514F1115D6458F /* testautomation_audio.c in Sources */,
|
||||
7C22594E259C512B68C3074A /* testautomation_clipboard.c in Sources */,
|
||||
0D0C2F586E93033058EB4F2D /* testautomation_events.c in Sources */,
|
||||
0EF101106870459C05C777E5 /* testautomation_keyboard.c in Sources */,
|
||||
4473155D1CA524123B156875 /* testautomation_main.c in Sources */,
|
||||
2C2A04F453191DD549990B38 /* testautomation_mouse.c in Sources */,
|
||||
174141BE560F099B2C951FF6 /* testautomation_pixels.c in Sources */,
|
||||
15E2389B6AB717B517F50AA9 /* testautomation_platform.c in Sources */,
|
||||
4E710EFA4F50233E3BB50A17 /* testautomation_rect.c in Sources */,
|
||||
07001C17388A1B8604CF33C9 /* testautomation_render.c in Sources */,
|
||||
115828D60DF755371C7E4B6F /* testautomation_rwops.c in Sources */,
|
||||
17E762DE07227FFC234A7E9B /* testautomation_sdltest.c in Sources */,
|
||||
3A1421F37C845F1F1A9A1691 /* testautomation_stdlib.c in Sources */,
|
||||
491B449B228565596C3C6841 /* testautomation_surface.c in Sources */,
|
||||
4EE3570C11213BFA50727385 /* testautomation_syswm.c in Sources */,
|
||||
15C3490D20032CC168A5510A /* testautomation_timer.c in Sources */,
|
||||
0D3D4F4B7C2244F36B98001A /* testautomation_video.c in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXVariantGroup section */
|
||||
/* End PBXVariantGroup section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
5E91187E198B10230A423327 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2main.a";
|
||||
targetProxy = 4570617838BB3896391D43EC /* PBXContainerItemProxy */;
|
||||
};
|
||||
34B918CE0EB26C3E7E5A4A83 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2test.a";
|
||||
targetProxy = 19D24173024D0FC63B313020 /* PBXContainerItemProxy */;
|
||||
};
|
||||
74B40BD2278E0624550E1B92 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2.a";
|
||||
targetProxy = 2325525D7B406481596F1ACA /* PBXContainerItemProxy */;
|
||||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
530A5E2B6C51709625A378DA /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testautomation";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
3959435D388F69171D142D41 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testautomation";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
273E09722ABB6C217CC7119E /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testautomation";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
320B04BC782D7AB87BAD2323 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testautomation";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
605F7F38404C55F0155D47FF /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
39A135251D9001C821A36BFA /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
55770DCA779C47491C7B5963 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
77191B3A2E603070399E514A /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
5BA144AB73752BB233B15E56 /* Build configuration list for PBXNativeTarget "testautomation" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
530A5E2B6C51709625A378DA /* Debug Universal */,
|
||||
3959435D388F69171D142D41 /* Debug Native */,
|
||||
273E09722ABB6C217CC7119E /* Release Universal */,
|
||||
320B04BC782D7AB87BAD2323 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testautomation" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
605F7F38404C55F0155D47FF /* Debug Universal */,
|
||||
39A135251D9001C821A36BFA /* Debug Native */,
|
||||
55770DCA779C47491C7B5963 /* Release Universal */,
|
||||
77191B3A2E603070399E514A /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
|
||||
};
|
||||
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
|
||||
}
|
|
@ -0,0 +1,457 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 45;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
35DE328145AD6E0914745F79 /* testdrawchessboard.c in Sources */ = {isa = PBXBuildFile; fileRef = 60996D1717D963E769CD2898 /* testdrawchessboard.c */; };
|
||||
0110486431865C1E669C36DF /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 53165EAA0B2E158F6E762B5F /* AudioToolbox.framework */; };
|
||||
7FC97D7F201C0EF852E13862 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 769C1044757D0E64647A44A6 /* AudioUnit.framework */; };
|
||||
41D609FD5D23379474C46FFC /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A7E27DA6BBA2A650C8A66F2 /* Cocoa.framework */; };
|
||||
5277264E7ED10A462AE05E06 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2D501CC572D136350610399A /* CoreAudio.framework */; };
|
||||
722625F2417A3E3D3E8D1D28 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 72A559841B373846021274DF /* IOKit.framework */; };
|
||||
45827A9C4A18208249DA2B1C /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 476967DE4E9A09EF64091D16 /* Carbon.framework */; };
|
||||
5F3605382F072DF26D481BA4 /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 69AA19F74A2B61D2520C3776 /* ForceFeedback.framework */; };
|
||||
20E612CC280776C71AB64008 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2DFA232B67675BA732AC3F7C /* CoreFoundation.framework */; };
|
||||
10AF6245321D238657A06FCC /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 76831E5E5DBD4629335D23F8 /* OpenGL.framework */; };
|
||||
7E680796485C4FD40B7944EE /* libSDL2main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 556C3C2D330A0B0047FD5F57 /* libSDL2main.a */; };
|
||||
33241E5A5B95214B7472122D /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 66F16E0067F26FD93B4E13D3 /* libSDL2.a */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
5E9264457D8F4FDA258F7D50 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 48D519EF36B55DA1160D5EE2 /* SDL2main.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 58DC62993160374E09FF7AD6;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
398A4D6C75E32B05043D51FE /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 48D519EF36B55DA1160D5EE2 /* SDL2main.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 0E7126A94A11494963D3548B;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
3E9F799007DC20805CD54D80 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 0CB41069655D7E0866A7735B /* SDL2.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 07D004B11E733F1F0EA93105;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
290C1261537627EA7B57269C /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 0CB41069655D7E0866A7735B /* SDL2.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 58C10ED14175754444033E0E;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
60996D1717D963E769CD2898 /* testdrawchessboard.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testdrawchessboard.c"; path = "../../../../../test/testdrawchessboard.c"; sourceTree = "<group>"; };
|
||||
53165EAA0B2E158F6E762B5F /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioToolbox.framework"; path = "/System/Library/Frameworks/AudioToolbox.framework"; sourceTree = "<absolute>"; };
|
||||
769C1044757D0E64647A44A6 /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioUnit.framework"; path = "/System/Library/Frameworks/AudioUnit.framework"; sourceTree = "<absolute>"; };
|
||||
5A7E27DA6BBA2A650C8A66F2 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Cocoa.framework"; path = "/System/Library/Frameworks/Cocoa.framework"; sourceTree = "<absolute>"; };
|
||||
2D501CC572D136350610399A /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreAudio.framework"; path = "/System/Library/Frameworks/CoreAudio.framework"; sourceTree = "<absolute>"; };
|
||||
72A559841B373846021274DF /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "IOKit.framework"; path = "/System/Library/Frameworks/IOKit.framework"; sourceTree = "<absolute>"; };
|
||||
476967DE4E9A09EF64091D16 /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Carbon.framework"; path = "/System/Library/Frameworks/Carbon.framework"; sourceTree = "<absolute>"; };
|
||||
69AA19F74A2B61D2520C3776 /* ForceFeedback.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "ForceFeedback.framework"; path = "/System/Library/Frameworks/ForceFeedback.framework"; sourceTree = "<absolute>"; };
|
||||
2DFA232B67675BA732AC3F7C /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreFoundation.framework"; path = "/System/Library/Frameworks/CoreFoundation.framework"; sourceTree = "<absolute>"; };
|
||||
76831E5E5DBD4629335D23F8 /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "OpenGL.framework"; path = "/System/Library/Frameworks/OpenGL.framework"; sourceTree = "<absolute>"; };
|
||||
5A0869BF37CB00921B944598 /* testchessboard */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = "testchessboard"; path = "testchessboard"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
48D519EF36B55DA1160D5EE2 /* SDL2main.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2main.xcodeproj"; path = "../../SDL2main/SDL2main.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
0CB41069655D7E0866A7735B /* SDL2.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2.xcodeproj"; path = "../../SDL2/SDL2.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
24E15BE51C2017BE68F3698F /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
0110486431865C1E669C36DF /* AudioToolbox.framework in Frameworks */,
|
||||
7FC97D7F201C0EF852E13862 /* AudioUnit.framework in Frameworks */,
|
||||
41D609FD5D23379474C46FFC /* Cocoa.framework in Frameworks */,
|
||||
5277264E7ED10A462AE05E06 /* CoreAudio.framework in Frameworks */,
|
||||
722625F2417A3E3D3E8D1D28 /* IOKit.framework in Frameworks */,
|
||||
45827A9C4A18208249DA2B1C /* Carbon.framework in Frameworks */,
|
||||
5F3605382F072DF26D481BA4 /* ForceFeedback.framework in Frameworks */,
|
||||
20E612CC280776C71AB64008 /* CoreFoundation.framework in Frameworks */,
|
||||
10AF6245321D238657A06FCC /* OpenGL.framework in Frameworks */,
|
||||
7E680796485C4FD40B7944EE /* libSDL2main.a in Frameworks */,
|
||||
33241E5A5B95214B7472122D /* libSDL2.a in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
2BF10F8D27097A0366F2294C /* testchessboard */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
76D535B72B981F7C2015797C /* test */,
|
||||
2A7C3CF320AC38DF78681804 /* Frameworks */,
|
||||
7BB4694341283B1B173A71E2 /* Products */,
|
||||
679E6D3E2EFF2738661F1F8C /* Projects */,
|
||||
);
|
||||
name = "testchessboard";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
76D535B72B981F7C2015797C /* test */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
60996D1717D963E769CD2898 /* testdrawchessboard.c */,
|
||||
);
|
||||
name = "test";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
2A7C3CF320AC38DF78681804 /* Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
53165EAA0B2E158F6E762B5F /* AudioToolbox.framework */,
|
||||
769C1044757D0E64647A44A6 /* AudioUnit.framework */,
|
||||
5A7E27DA6BBA2A650C8A66F2 /* Cocoa.framework */,
|
||||
2D501CC572D136350610399A /* CoreAudio.framework */,
|
||||
72A559841B373846021274DF /* IOKit.framework */,
|
||||
476967DE4E9A09EF64091D16 /* Carbon.framework */,
|
||||
69AA19F74A2B61D2520C3776 /* ForceFeedback.framework */,
|
||||
2DFA232B67675BA732AC3F7C /* CoreFoundation.framework */,
|
||||
76831E5E5DBD4629335D23F8 /* OpenGL.framework */,
|
||||
);
|
||||
name = "Frameworks";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
7BB4694341283B1B173A71E2 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
5A0869BF37CB00921B944598 /* testchessboard */,
|
||||
);
|
||||
name = "Products";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
679E6D3E2EFF2738661F1F8C /* Projects */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
48D519EF36B55DA1160D5EE2 /* SDL2main.xcodeproj */,
|
||||
0CB41069655D7E0866A7735B /* SDL2.xcodeproj */,
|
||||
);
|
||||
name = "Projects";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
49B200351F1678324E3174EA /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
556C3C2D330A0B0047FD5F57 /* libSDL2main.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
41036B430C9B4C7529775FA4 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
66F16E0067F26FD93B4E13D3 /* libSDL2.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
07D02207186251D71CCD7829 /* testchessboard */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 01B27E227F386B85001A41CF /* Build configuration list for PBXNativeTarget "testchessboard" */;
|
||||
buildPhases = (
|
||||
3D931C945EA21D4C0F1E1330 /* Resources */,
|
||||
4E7F03F413B507E954C37591 /* Sources */,
|
||||
24E15BE51C2017BE68F3698F /* Frameworks */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
214F56C74D9256F3225A5077 /* PBXTargetDependency */,
|
||||
510C136A2F672D291C086F8B /* PBXTargetDependency */,
|
||||
);
|
||||
name = "testchessboard";
|
||||
productInstallPath = "$(HOME)/bin";
|
||||
productName = "testchessboard";
|
||||
productReference = 5A0869BF37CB00921B944598 /* testchessboard */;
|
||||
productType = "com.apple.product-type.tool";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
08FB7793FE84155DC02AAC07 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
buildConfigurationList = 1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testchessboard" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
hasScannedForEncodings = 1;
|
||||
mainGroup = 2BF10F8D27097A0366F2294C /* testchessboard */;
|
||||
projectDirPath = "";
|
||||
projectReferences = (
|
||||
{
|
||||
ProductGroup = 49B200351F1678324E3174EA /* Products */;
|
||||
ProjectRef = 48D519EF36B55DA1160D5EE2 /* SDL2main.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 41036B430C9B4C7529775FA4 /* Products */;
|
||||
ProjectRef = 0CB41069655D7E0866A7735B /* SDL2.xcodeproj */;
|
||||
},
|
||||
);
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
07D02207186251D71CCD7829 /* testchessboard */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXReferenceProxy section */
|
||||
556C3C2D330A0B0047FD5F57 /* libSDL2main.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2main.a";
|
||||
remoteRef = 5E9264457D8F4FDA258F7D50 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
66F16E0067F26FD93B4E13D3 /* libSDL2.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2.a";
|
||||
remoteRef = 3E9F799007DC20805CD54D80 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
/* End PBXReferenceProxy section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
3D931C945EA21D4C0F1E1330 /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
4E7F03F413B507E954C37591 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
35DE328145AD6E0914745F79 /* testdrawchessboard.c in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXVariantGroup section */
|
||||
/* End PBXVariantGroup section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
214F56C74D9256F3225A5077 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2main.a";
|
||||
targetProxy = 398A4D6C75E32B05043D51FE /* PBXContainerItemProxy */;
|
||||
};
|
||||
510C136A2F672D291C086F8B /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2.a";
|
||||
targetProxy = 290C1261537627EA7B57269C /* PBXContainerItemProxy */;
|
||||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
67A117F234013A0663E16451 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testchessboard";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
1BCC7B883E42796A3CD94CC9 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testchessboard";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
3D2D7BB13A5266A84BEC1887 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testchessboard";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
417E6CAF07F903EB4F4348B8 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testchessboard";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
1B6F4D777CD26B656BBE3F65 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
61160B083DC61DEA14751448 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
573C43B32DD46E95354E4107 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
4A8028AA6A024D75566E08F9 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
01B27E227F386B85001A41CF /* Build configuration list for PBXNativeTarget "testchessboard" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
67A117F234013A0663E16451 /* Debug Universal */,
|
||||
1BCC7B883E42796A3CD94CC9 /* Debug Native */,
|
||||
3D2D7BB13A5266A84BEC1887 /* Release Universal */,
|
||||
417E6CAF07F903EB4F4348B8 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testchessboard" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
1B6F4D777CD26B656BBE3F65 /* Debug Universal */,
|
||||
61160B083DC61DEA14751448 /* Debug Native */,
|
||||
573C43B32DD46E95354E4107 /* Release Universal */,
|
||||
4A8028AA6A024D75566E08F9 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
|
||||
};
|
||||
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
|
||||
}
|
500
premake/Xcode/Xcode3/tests/testdraw2/testdraw2.xcodeproj/project.pbxproj
Executable file
500
premake/Xcode/Xcode3/tests/testdraw2/testdraw2.xcodeproj/project.pbxproj
Executable file
|
@ -0,0 +1,500 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 45;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
46A643E578D4673508D31259 /* testdraw2.c in Sources */ = {isa = PBXBuildFile; fileRef = 3B3F36FF4D8A2DD716C440D4 /* testdraw2.c */; };
|
||||
107A71C744DF30D240C81A27 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 362D61AA1F56529425652D31 /* AudioToolbox.framework */; };
|
||||
26446575064870BF494C3E42 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 34D47D841ED54D2751B771C4 /* AudioUnit.framework */; };
|
||||
2553249C28071DD2726E1BDD /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 797B033D5B6C490E5BA75B83 /* Cocoa.framework */; };
|
||||
649A616F5282137110F84534 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 684A6B9055540E5713A96DE1 /* CoreAudio.framework */; };
|
||||
63531BEB1095549A6C6849FF /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 04076F4F45DE0B1B2DC833EA /* IOKit.framework */; };
|
||||
4C63217B29F3164A549F36A6 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 07C063862A593E306BA26C60 /* Carbon.framework */; };
|
||||
04090BB1204A6D8477DF0481 /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 07F8332E3B3B280911103CCC /* ForceFeedback.framework */; };
|
||||
46D34FBB1AE60EA458434F87 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 332C0F1827311CFA0A6D15BF /* CoreFoundation.framework */; };
|
||||
6CF6242256FC3EFC139206FC /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 293C2E4D5E1B693D285E501A /* OpenGL.framework */; };
|
||||
177F2BC3249E24E164CD7E1E /* libSDL2main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 43A460245E6C3EA750F733AE /* libSDL2main.a */; };
|
||||
09B2308925B451B75142513C /* libSDL2test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5128532F4FD46D876FE00730 /* libSDL2test.a */; };
|
||||
2CAD3DB40BED09454E765342 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3FCA07BB14A64ED71D202DC2 /* libSDL2.a */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
44CD19F82A1A1BD5563412AC /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 486A432B695035F428DF7ABF /* SDL2main.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 58DC62993160374E09FF7AD6;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
11001D5A40213D8B28611B1A /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 486A432B695035F428DF7ABF /* SDL2main.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 0E7126A94A11494963D3548B;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
0C4D504B1B2C6A111E1842E4 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 644E4C3B5CA36B2702C76EAD /* SDL2test.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 1E1175156F97314C291323CB;
|
||||
remoteInfo = "libSDL2test.a";
|
||||
};
|
||||
3D0670FA38FC52FF7C3D1BDC /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 644E4C3B5CA36B2702C76EAD /* SDL2test.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 7CD70F5D43DA554D66287CFC;
|
||||
remoteInfo = "libSDL2test.a";
|
||||
};
|
||||
66FA34A779DA6601017F6257 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 71C277AE425D745E65B23734 /* SDL2.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 07D004B11E733F1F0EA93105;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
54892FDB58722851769A007D /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 71C277AE425D745E65B23734 /* SDL2.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 58C10ED14175754444033E0E;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
3B3F36FF4D8A2DD716C440D4 /* testdraw2.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testdraw2.c"; path = "../../../../../test/testdraw2.c"; sourceTree = "<group>"; };
|
||||
362D61AA1F56529425652D31 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioToolbox.framework"; path = "/System/Library/Frameworks/AudioToolbox.framework"; sourceTree = "<absolute>"; };
|
||||
34D47D841ED54D2751B771C4 /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioUnit.framework"; path = "/System/Library/Frameworks/AudioUnit.framework"; sourceTree = "<absolute>"; };
|
||||
797B033D5B6C490E5BA75B83 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Cocoa.framework"; path = "/System/Library/Frameworks/Cocoa.framework"; sourceTree = "<absolute>"; };
|
||||
684A6B9055540E5713A96DE1 /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreAudio.framework"; path = "/System/Library/Frameworks/CoreAudio.framework"; sourceTree = "<absolute>"; };
|
||||
04076F4F45DE0B1B2DC833EA /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "IOKit.framework"; path = "/System/Library/Frameworks/IOKit.framework"; sourceTree = "<absolute>"; };
|
||||
07C063862A593E306BA26C60 /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Carbon.framework"; path = "/System/Library/Frameworks/Carbon.framework"; sourceTree = "<absolute>"; };
|
||||
07F8332E3B3B280911103CCC /* ForceFeedback.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "ForceFeedback.framework"; path = "/System/Library/Frameworks/ForceFeedback.framework"; sourceTree = "<absolute>"; };
|
||||
332C0F1827311CFA0A6D15BF /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreFoundation.framework"; path = "/System/Library/Frameworks/CoreFoundation.framework"; sourceTree = "<absolute>"; };
|
||||
293C2E4D5E1B693D285E501A /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "OpenGL.framework"; path = "/System/Library/Frameworks/OpenGL.framework"; sourceTree = "<absolute>"; };
|
||||
23C77B2C463965F0177666B8 /* testdraw2 */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = "testdraw2"; path = "testdraw2"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
486A432B695035F428DF7ABF /* SDL2main.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2main.xcodeproj"; path = "../../SDL2main/SDL2main.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
644E4C3B5CA36B2702C76EAD /* SDL2test.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2test.xcodeproj"; path = "../../SDL2test/SDL2test.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
71C277AE425D745E65B23734 /* SDL2.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2.xcodeproj"; path = "../../SDL2/SDL2.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
0954145A60A5100166C11418 /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
107A71C744DF30D240C81A27 /* AudioToolbox.framework in Frameworks */,
|
||||
26446575064870BF494C3E42 /* AudioUnit.framework in Frameworks */,
|
||||
2553249C28071DD2726E1BDD /* Cocoa.framework in Frameworks */,
|
||||
649A616F5282137110F84534 /* CoreAudio.framework in Frameworks */,
|
||||
63531BEB1095549A6C6849FF /* IOKit.framework in Frameworks */,
|
||||
4C63217B29F3164A549F36A6 /* Carbon.framework in Frameworks */,
|
||||
04090BB1204A6D8477DF0481 /* ForceFeedback.framework in Frameworks */,
|
||||
46D34FBB1AE60EA458434F87 /* CoreFoundation.framework in Frameworks */,
|
||||
6CF6242256FC3EFC139206FC /* OpenGL.framework in Frameworks */,
|
||||
177F2BC3249E24E164CD7E1E /* libSDL2main.a in Frameworks */,
|
||||
09B2308925B451B75142513C /* libSDL2test.a in Frameworks */,
|
||||
2CAD3DB40BED09454E765342 /* libSDL2.a in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
743368A34B4F6B5F46612ABD /* testdraw2 */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
02453B617F8E630254DC70B2 /* test */,
|
||||
48704837171A4361321663C5 /* Frameworks */,
|
||||
31D45CBF16B00A4231340C84 /* Products */,
|
||||
33AA14AE61EE0F092327166A /* Projects */,
|
||||
);
|
||||
name = "testdraw2";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
02453B617F8E630254DC70B2 /* test */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
3B3F36FF4D8A2DD716C440D4 /* testdraw2.c */,
|
||||
);
|
||||
name = "test";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
48704837171A4361321663C5 /* Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
362D61AA1F56529425652D31 /* AudioToolbox.framework */,
|
||||
34D47D841ED54D2751B771C4 /* AudioUnit.framework */,
|
||||
797B033D5B6C490E5BA75B83 /* Cocoa.framework */,
|
||||
684A6B9055540E5713A96DE1 /* CoreAudio.framework */,
|
||||
04076F4F45DE0B1B2DC833EA /* IOKit.framework */,
|
||||
07C063862A593E306BA26C60 /* Carbon.framework */,
|
||||
07F8332E3B3B280911103CCC /* ForceFeedback.framework */,
|
||||
332C0F1827311CFA0A6D15BF /* CoreFoundation.framework */,
|
||||
293C2E4D5E1B693D285E501A /* OpenGL.framework */,
|
||||
);
|
||||
name = "Frameworks";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
31D45CBF16B00A4231340C84 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
23C77B2C463965F0177666B8 /* testdraw2 */,
|
||||
);
|
||||
name = "Products";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
33AA14AE61EE0F092327166A /* Projects */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
486A432B695035F428DF7ABF /* SDL2main.xcodeproj */,
|
||||
644E4C3B5CA36B2702C76EAD /* SDL2test.xcodeproj */,
|
||||
71C277AE425D745E65B23734 /* SDL2.xcodeproj */,
|
||||
);
|
||||
name = "Projects";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
709A16FC146E78AB389E28B2 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
43A460245E6C3EA750F733AE /* libSDL2main.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
448B2C942C3F78777583752F /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
5128532F4FD46D876FE00730 /* libSDL2test.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
7F4668843F6075EA15E66EAE /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
3FCA07BB14A64ED71D202DC2 /* libSDL2.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
760571DE553A1046060419AF /* testdraw2 */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 4AF14260522E507206777256 /* Build configuration list for PBXNativeTarget "testdraw2" */;
|
||||
buildPhases = (
|
||||
2885554E12050C36678F1720 /* Resources */,
|
||||
5F5E1D1D60F4401202675F17 /* Sources */,
|
||||
0954145A60A5100166C11418 /* Frameworks */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
55961288456A38F7056E167A /* PBXTargetDependency */,
|
||||
301E421E70274CB07282688E /* PBXTargetDependency */,
|
||||
3DD370C46E011FF460E30B87 /* PBXTargetDependency */,
|
||||
);
|
||||
name = "testdraw2";
|
||||
productInstallPath = "$(HOME)/bin";
|
||||
productName = "testdraw2";
|
||||
productReference = 23C77B2C463965F0177666B8 /* testdraw2 */;
|
||||
productType = "com.apple.product-type.tool";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
08FB7793FE84155DC02AAC07 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
buildConfigurationList = 1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testdraw2" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
hasScannedForEncodings = 1;
|
||||
mainGroup = 743368A34B4F6B5F46612ABD /* testdraw2 */;
|
||||
projectDirPath = "";
|
||||
projectReferences = (
|
||||
{
|
||||
ProductGroup = 709A16FC146E78AB389E28B2 /* Products */;
|
||||
ProjectRef = 486A432B695035F428DF7ABF /* SDL2main.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 448B2C942C3F78777583752F /* Products */;
|
||||
ProjectRef = 644E4C3B5CA36B2702C76EAD /* SDL2test.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 7F4668843F6075EA15E66EAE /* Products */;
|
||||
ProjectRef = 71C277AE425D745E65B23734 /* SDL2.xcodeproj */;
|
||||
},
|
||||
);
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
760571DE553A1046060419AF /* testdraw2 */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXReferenceProxy section */
|
||||
43A460245E6C3EA750F733AE /* libSDL2main.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2main.a";
|
||||
remoteRef = 44CD19F82A1A1BD5563412AC /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
5128532F4FD46D876FE00730 /* libSDL2test.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2test.a";
|
||||
remoteRef = 0C4D504B1B2C6A111E1842E4 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
3FCA07BB14A64ED71D202DC2 /* libSDL2.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2.a";
|
||||
remoteRef = 66FA34A779DA6601017F6257 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
/* End PBXReferenceProxy section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
2885554E12050C36678F1720 /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
5F5E1D1D60F4401202675F17 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
46A643E578D4673508D31259 /* testdraw2.c in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXVariantGroup section */
|
||||
/* End PBXVariantGroup section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
55961288456A38F7056E167A /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2main.a";
|
||||
targetProxy = 11001D5A40213D8B28611B1A /* PBXContainerItemProxy */;
|
||||
};
|
||||
301E421E70274CB07282688E /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2test.a";
|
||||
targetProxy = 3D0670FA38FC52FF7C3D1BDC /* PBXContainerItemProxy */;
|
||||
};
|
||||
3DD370C46E011FF460E30B87 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2.a";
|
||||
targetProxy = 54892FDB58722851769A007D /* PBXContainerItemProxy */;
|
||||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
23490E4A355E6ED176941E99 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testdraw2";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
61BE161A26B87D1C766C2E32 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testdraw2";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
384C1F9A6BF9431F43C82E11 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testdraw2";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
56740DBE5084479C5D1C5B9E /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testdraw2";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
64A47BC169081DA211EB6FD6 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
73582B713A9717DA14E54679 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
075646D2218265927C9F53DD /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
09567873708D3A0355285D01 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
4AF14260522E507206777256 /* Build configuration list for PBXNativeTarget "testdraw2" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
23490E4A355E6ED176941E99 /* Debug Universal */,
|
||||
61BE161A26B87D1C766C2E32 /* Debug Native */,
|
||||
384C1F9A6BF9431F43C82E11 /* Release Universal */,
|
||||
56740DBE5084479C5D1C5B9E /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testdraw2" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
64A47BC169081DA211EB6FD6 /* Debug Universal */,
|
||||
73582B713A9717DA14E54679 /* Debug Native */,
|
||||
075646D2218265927C9F53DD /* Release Universal */,
|
||||
09567873708D3A0355285D01 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
|
||||
};
|
||||
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
|
||||
}
|
457
premake/Xcode/Xcode3/tests/testerror/testerror.xcodeproj/project.pbxproj
Executable file
457
premake/Xcode/Xcode3/tests/testerror/testerror.xcodeproj/project.pbxproj
Executable file
|
@ -0,0 +1,457 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 45;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
17F36FF223D577CE040E342A /* testerror.c in Sources */ = {isa = PBXBuildFile; fileRef = 2AD528C05907077E1C980084 /* testerror.c */; };
|
||||
5C7C76636FB4225049E30962 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 242A7ADB51E93AC8229B297F /* AudioToolbox.framework */; };
|
||||
55D31CE04107687A523138C1 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3F58459D51D43F875ECB6AE2 /* AudioUnit.framework */; };
|
||||
16EF544D14414BCD300959E8 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 334320CD2EB329612B4952EC /* Cocoa.framework */; };
|
||||
312528E57525045D04E55E0B /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C6C31CF3E812DF0797A394C /* CoreAudio.framework */; };
|
||||
6164728C6E8851A346A928C0 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4BD852F43C7D329A4EAD7B6D /* IOKit.framework */; };
|
||||
699B65297DDF6A1E0BF665EE /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60376BCC588668CC65617410 /* Carbon.framework */; };
|
||||
52D806B15DBA758E50A26743 /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1F297A542691370563C318DE /* ForceFeedback.framework */; };
|
||||
187A22356B9F324B076D2730 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F607DB43672788F25274B0E /* CoreFoundation.framework */; };
|
||||
3A0353607DF115A314423754 /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 584A07DE2AED5FCA73C606FC /* OpenGL.framework */; };
|
||||
767523933EAB5BCB243518EE /* libSDL2main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 079A33B1695D0E942AC90EB2 /* libSDL2main.a */; };
|
||||
3CBF24FE282A7770718F7C28 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 540A66CB408E504F2D473B0C /* libSDL2.a */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
5F116C1E4AB736B349E440B2 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 668C7E30376F65E65FF57724 /* SDL2main.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 58DC62993160374E09FF7AD6;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
0B9E63E70B65163F112B279B /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 668C7E30376F65E65FF57724 /* SDL2main.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 0E7126A94A11494963D3548B;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
5EAC27E67852613A48610EB5 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 473904A730CA33A056813A82 /* SDL2.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 07D004B11E733F1F0EA93105;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
453405F92872773764857EEE /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 473904A730CA33A056813A82 /* SDL2.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 58C10ED14175754444033E0E;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
2AD528C05907077E1C980084 /* testerror.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testerror.c"; path = "../../../../../test/testerror.c"; sourceTree = "<group>"; };
|
||||
242A7ADB51E93AC8229B297F /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioToolbox.framework"; path = "/System/Library/Frameworks/AudioToolbox.framework"; sourceTree = "<absolute>"; };
|
||||
3F58459D51D43F875ECB6AE2 /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioUnit.framework"; path = "/System/Library/Frameworks/AudioUnit.framework"; sourceTree = "<absolute>"; };
|
||||
334320CD2EB329612B4952EC /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Cocoa.framework"; path = "/System/Library/Frameworks/Cocoa.framework"; sourceTree = "<absolute>"; };
|
||||
1C6C31CF3E812DF0797A394C /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreAudio.framework"; path = "/System/Library/Frameworks/CoreAudio.framework"; sourceTree = "<absolute>"; };
|
||||
4BD852F43C7D329A4EAD7B6D /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "IOKit.framework"; path = "/System/Library/Frameworks/IOKit.framework"; sourceTree = "<absolute>"; };
|
||||
60376BCC588668CC65617410 /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Carbon.framework"; path = "/System/Library/Frameworks/Carbon.framework"; sourceTree = "<absolute>"; };
|
||||
1F297A542691370563C318DE /* ForceFeedback.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "ForceFeedback.framework"; path = "/System/Library/Frameworks/ForceFeedback.framework"; sourceTree = "<absolute>"; };
|
||||
0F607DB43672788F25274B0E /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreFoundation.framework"; path = "/System/Library/Frameworks/CoreFoundation.framework"; sourceTree = "<absolute>"; };
|
||||
584A07DE2AED5FCA73C606FC /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "OpenGL.framework"; path = "/System/Library/Frameworks/OpenGL.framework"; sourceTree = "<absolute>"; };
|
||||
430B280B15A10042050C5C68 /* testerror */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = "testerror"; path = "testerror"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
668C7E30376F65E65FF57724 /* SDL2main.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2main.xcodeproj"; path = "../../SDL2main/SDL2main.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
473904A730CA33A056813A82 /* SDL2.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2.xcodeproj"; path = "../../SDL2/SDL2.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
508430F81E4545FA3FA63BC6 /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
5C7C76636FB4225049E30962 /* AudioToolbox.framework in Frameworks */,
|
||||
55D31CE04107687A523138C1 /* AudioUnit.framework in Frameworks */,
|
||||
16EF544D14414BCD300959E8 /* Cocoa.framework in Frameworks */,
|
||||
312528E57525045D04E55E0B /* CoreAudio.framework in Frameworks */,
|
||||
6164728C6E8851A346A928C0 /* IOKit.framework in Frameworks */,
|
||||
699B65297DDF6A1E0BF665EE /* Carbon.framework in Frameworks */,
|
||||
52D806B15DBA758E50A26743 /* ForceFeedback.framework in Frameworks */,
|
||||
187A22356B9F324B076D2730 /* CoreFoundation.framework in Frameworks */,
|
||||
3A0353607DF115A314423754 /* OpenGL.framework in Frameworks */,
|
||||
767523933EAB5BCB243518EE /* libSDL2main.a in Frameworks */,
|
||||
3CBF24FE282A7770718F7C28 /* libSDL2.a in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
247065CB755213A014F11B43 /* testerror */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
65F6185108DB0AF171803A14 /* test */,
|
||||
3BA77DEF0897734D5B676A5D /* Frameworks */,
|
||||
6D166C097CD736C220776C40 /* Products */,
|
||||
1B7606265B0A10D479DE6F2C /* Projects */,
|
||||
);
|
||||
name = "testerror";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
65F6185108DB0AF171803A14 /* test */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
2AD528C05907077E1C980084 /* testerror.c */,
|
||||
);
|
||||
name = "test";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
3BA77DEF0897734D5B676A5D /* Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
242A7ADB51E93AC8229B297F /* AudioToolbox.framework */,
|
||||
3F58459D51D43F875ECB6AE2 /* AudioUnit.framework */,
|
||||
334320CD2EB329612B4952EC /* Cocoa.framework */,
|
||||
1C6C31CF3E812DF0797A394C /* CoreAudio.framework */,
|
||||
4BD852F43C7D329A4EAD7B6D /* IOKit.framework */,
|
||||
60376BCC588668CC65617410 /* Carbon.framework */,
|
||||
1F297A542691370563C318DE /* ForceFeedback.framework */,
|
||||
0F607DB43672788F25274B0E /* CoreFoundation.framework */,
|
||||
584A07DE2AED5FCA73C606FC /* OpenGL.framework */,
|
||||
);
|
||||
name = "Frameworks";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
6D166C097CD736C220776C40 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
430B280B15A10042050C5C68 /* testerror */,
|
||||
);
|
||||
name = "Products";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
1B7606265B0A10D479DE6F2C /* Projects */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
668C7E30376F65E65FF57724 /* SDL2main.xcodeproj */,
|
||||
473904A730CA33A056813A82 /* SDL2.xcodeproj */,
|
||||
);
|
||||
name = "Projects";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
6D721818606B463A25996043 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
079A33B1695D0E942AC90EB2 /* libSDL2main.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
1D7F044B59CF3F423066168C /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
540A66CB408E504F2D473B0C /* libSDL2.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
6FD078CA32E570E62FAC7B55 /* testerror */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 34B560ED7D9E21AD23582503 /* Build configuration list for PBXNativeTarget "testerror" */;
|
||||
buildPhases = (
|
||||
164938B91D941AD539E636C6 /* Resources */,
|
||||
425B7E6F62BF27286A180D2C /* Sources */,
|
||||
508430F81E4545FA3FA63BC6 /* Frameworks */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
69FF1BE85A7C0EE716D2443B /* PBXTargetDependency */,
|
||||
4FEA117D4965295E6AD34DD2 /* PBXTargetDependency */,
|
||||
);
|
||||
name = "testerror";
|
||||
productInstallPath = "$(HOME)/bin";
|
||||
productName = "testerror";
|
||||
productReference = 430B280B15A10042050C5C68 /* testerror */;
|
||||
productType = "com.apple.product-type.tool";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
08FB7793FE84155DC02AAC07 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
buildConfigurationList = 1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testerror" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
hasScannedForEncodings = 1;
|
||||
mainGroup = 247065CB755213A014F11B43 /* testerror */;
|
||||
projectDirPath = "";
|
||||
projectReferences = (
|
||||
{
|
||||
ProductGroup = 6D721818606B463A25996043 /* Products */;
|
||||
ProjectRef = 668C7E30376F65E65FF57724 /* SDL2main.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 1D7F044B59CF3F423066168C /* Products */;
|
||||
ProjectRef = 473904A730CA33A056813A82 /* SDL2.xcodeproj */;
|
||||
},
|
||||
);
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
6FD078CA32E570E62FAC7B55 /* testerror */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXReferenceProxy section */
|
||||
079A33B1695D0E942AC90EB2 /* libSDL2main.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2main.a";
|
||||
remoteRef = 5F116C1E4AB736B349E440B2 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
540A66CB408E504F2D473B0C /* libSDL2.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2.a";
|
||||
remoteRef = 5EAC27E67852613A48610EB5 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
/* End PBXReferenceProxy section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
164938B91D941AD539E636C6 /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
425B7E6F62BF27286A180D2C /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
17F36FF223D577CE040E342A /* testerror.c in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXVariantGroup section */
|
||||
/* End PBXVariantGroup section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
69FF1BE85A7C0EE716D2443B /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2main.a";
|
||||
targetProxy = 0B9E63E70B65163F112B279B /* PBXContainerItemProxy */;
|
||||
};
|
||||
4FEA117D4965295E6AD34DD2 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2.a";
|
||||
targetProxy = 453405F92872773764857EEE /* PBXContainerItemProxy */;
|
||||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
24386F3E596918DA291C2E96 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testerror";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
118B4516471538C5115921AE /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testerror";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
354A3B710CF9568C3616645B /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testerror";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
51115E5604C07F0C6F3A08E8 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testerror";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
06B76729458605591CCB7F37 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
63456C690D7B2EF152151B6D /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
477F178808E30A7279936349 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
38F85370614A015F42246EB5 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
34B560ED7D9E21AD23582503 /* Build configuration list for PBXNativeTarget "testerror" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
24386F3E596918DA291C2E96 /* Debug Universal */,
|
||||
118B4516471538C5115921AE /* Debug Native */,
|
||||
354A3B710CF9568C3616645B /* Release Universal */,
|
||||
51115E5604C07F0C6F3A08E8 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testerror" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
06B76729458605591CCB7F37 /* Debug Universal */,
|
||||
63456C690D7B2EF152151B6D /* Debug Native */,
|
||||
477F178808E30A7279936349 /* Release Universal */,
|
||||
38F85370614A015F42246EB5 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
|
||||
};
|
||||
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
|
||||
}
|
457
premake/Xcode/Xcode3/tests/testfile/testfile.xcodeproj/project.pbxproj
Executable file
457
premake/Xcode/Xcode3/tests/testfile/testfile.xcodeproj/project.pbxproj
Executable file
|
@ -0,0 +1,457 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 45;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
12B9553A11444429616D59C6 /* testfile.c in Sources */ = {isa = PBXBuildFile; fileRef = 53A77FF942F927C455B84781 /* testfile.c */; };
|
||||
7B04459A069465B17D0627A6 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7A07191E2C972B570F1F4316 /* AudioToolbox.framework */; };
|
||||
54FD6F2C67247E6F40E66347 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 434A4C52501C7A1718E04D06 /* AudioUnit.framework */; };
|
||||
6020107A580D63BD189E6A28 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 571F63057A7A7C3E52AE3182 /* Cocoa.framework */; };
|
||||
78301A5C377D22CC050F3360 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 232161417601563F79A5546B /* CoreAudio.framework */; };
|
||||
311E4E724881278255517458 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 054B223825BD22DF79650A2F /* IOKit.framework */; };
|
||||
018007961E2263CE26C44CE9 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 629678825B1A17724A7227FB /* Carbon.framework */; };
|
||||
542E30D9264242B26BB81623 /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6A200FB3562A0F885EE26DAE /* ForceFeedback.framework */; };
|
||||
255B2EC65660579728091B6B /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 625B5D281B274BD51A5D7669 /* CoreFoundation.framework */; };
|
||||
68A3529974322AC63C733751 /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 38DA1E13099B443056592A57 /* OpenGL.framework */; };
|
||||
501A5E9D32F573375A396E26 /* libSDL2main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 35C672053AE7439058CF1E06 /* libSDL2main.a */; };
|
||||
75FA24B51AE94B583B3A7F78 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 021C28B302890B35602A095D /* libSDL2.a */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
38DC1CE449A02EDB53A46F1F /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 456E5690134259340D017AE0 /* SDL2main.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 58DC62993160374E09FF7AD6;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
0A380900091C129F171F2BFD /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 456E5690134259340D017AE0 /* SDL2main.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 0E7126A94A11494963D3548B;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
36E065014BB04FEC2DB15E06 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 0F804EE2031625A5344A6F0F /* SDL2.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 07D004B11E733F1F0EA93105;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
6B5928536FA55B7D231549C8 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 0F804EE2031625A5344A6F0F /* SDL2.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 58C10ED14175754444033E0E;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
53A77FF942F927C455B84781 /* testfile.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testfile.c"; path = "../../../../../test/testfile.c"; sourceTree = "<group>"; };
|
||||
7A07191E2C972B570F1F4316 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioToolbox.framework"; path = "/System/Library/Frameworks/AudioToolbox.framework"; sourceTree = "<absolute>"; };
|
||||
434A4C52501C7A1718E04D06 /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioUnit.framework"; path = "/System/Library/Frameworks/AudioUnit.framework"; sourceTree = "<absolute>"; };
|
||||
571F63057A7A7C3E52AE3182 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Cocoa.framework"; path = "/System/Library/Frameworks/Cocoa.framework"; sourceTree = "<absolute>"; };
|
||||
232161417601563F79A5546B /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreAudio.framework"; path = "/System/Library/Frameworks/CoreAudio.framework"; sourceTree = "<absolute>"; };
|
||||
054B223825BD22DF79650A2F /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "IOKit.framework"; path = "/System/Library/Frameworks/IOKit.framework"; sourceTree = "<absolute>"; };
|
||||
629678825B1A17724A7227FB /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Carbon.framework"; path = "/System/Library/Frameworks/Carbon.framework"; sourceTree = "<absolute>"; };
|
||||
6A200FB3562A0F885EE26DAE /* ForceFeedback.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "ForceFeedback.framework"; path = "/System/Library/Frameworks/ForceFeedback.framework"; sourceTree = "<absolute>"; };
|
||||
625B5D281B274BD51A5D7669 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreFoundation.framework"; path = "/System/Library/Frameworks/CoreFoundation.framework"; sourceTree = "<absolute>"; };
|
||||
38DA1E13099B443056592A57 /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "OpenGL.framework"; path = "/System/Library/Frameworks/OpenGL.framework"; sourceTree = "<absolute>"; };
|
||||
5FF3088A3FCA05760C613507 /* testfile */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = "testfile"; path = "testfile"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
456E5690134259340D017AE0 /* SDL2main.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2main.xcodeproj"; path = "../../SDL2main/SDL2main.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
0F804EE2031625A5344A6F0F /* SDL2.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2.xcodeproj"; path = "../../SDL2/SDL2.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
63C5588C0B37498D6C9B4D01 /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
7B04459A069465B17D0627A6 /* AudioToolbox.framework in Frameworks */,
|
||||
54FD6F2C67247E6F40E66347 /* AudioUnit.framework in Frameworks */,
|
||||
6020107A580D63BD189E6A28 /* Cocoa.framework in Frameworks */,
|
||||
78301A5C377D22CC050F3360 /* CoreAudio.framework in Frameworks */,
|
||||
311E4E724881278255517458 /* IOKit.framework in Frameworks */,
|
||||
018007961E2263CE26C44CE9 /* Carbon.framework in Frameworks */,
|
||||
542E30D9264242B26BB81623 /* ForceFeedback.framework in Frameworks */,
|
||||
255B2EC65660579728091B6B /* CoreFoundation.framework in Frameworks */,
|
||||
68A3529974322AC63C733751 /* OpenGL.framework in Frameworks */,
|
||||
501A5E9D32F573375A396E26 /* libSDL2main.a in Frameworks */,
|
||||
75FA24B51AE94B583B3A7F78 /* libSDL2.a in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
127B75A40BDB574C64C011B2 /* testfile */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
7D017901635636C825861697 /* test */,
|
||||
7A3008B20E036DE23C3B513B /* Frameworks */,
|
||||
4E33258618BA1CA05A5C6978 /* Products */,
|
||||
5A025AD573D015154D736ADC /* Projects */,
|
||||
);
|
||||
name = "testfile";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
7D017901635636C825861697 /* test */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
53A77FF942F927C455B84781 /* testfile.c */,
|
||||
);
|
||||
name = "test";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
7A3008B20E036DE23C3B513B /* Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
7A07191E2C972B570F1F4316 /* AudioToolbox.framework */,
|
||||
434A4C52501C7A1718E04D06 /* AudioUnit.framework */,
|
||||
571F63057A7A7C3E52AE3182 /* Cocoa.framework */,
|
||||
232161417601563F79A5546B /* CoreAudio.framework */,
|
||||
054B223825BD22DF79650A2F /* IOKit.framework */,
|
||||
629678825B1A17724A7227FB /* Carbon.framework */,
|
||||
6A200FB3562A0F885EE26DAE /* ForceFeedback.framework */,
|
||||
625B5D281B274BD51A5D7669 /* CoreFoundation.framework */,
|
||||
38DA1E13099B443056592A57 /* OpenGL.framework */,
|
||||
);
|
||||
name = "Frameworks";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
4E33258618BA1CA05A5C6978 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
5FF3088A3FCA05760C613507 /* testfile */,
|
||||
);
|
||||
name = "Products";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
5A025AD573D015154D736ADC /* Projects */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
456E5690134259340D017AE0 /* SDL2main.xcodeproj */,
|
||||
0F804EE2031625A5344A6F0F /* SDL2.xcodeproj */,
|
||||
);
|
||||
name = "Projects";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
01CC07FB0EE71603201159C5 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
35C672053AE7439058CF1E06 /* libSDL2main.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
1CB5571343E710DC6CBD7D10 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
021C28B302890B35602A095D /* libSDL2.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
76920DAF18017081649264B5 /* testfile */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 1FAE5CF509DF4EEA07F2584A /* Build configuration list for PBXNativeTarget "testfile" */;
|
||||
buildPhases = (
|
||||
79DD48C9121F3797402D4FB7 /* Resources */,
|
||||
01E11129246D0B0B3A757724 /* Sources */,
|
||||
63C5588C0B37498D6C9B4D01 /* Frameworks */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
0642037E5B0A7E247DD625D8 /* PBXTargetDependency */,
|
||||
0FF60B471437282B2572614B /* PBXTargetDependency */,
|
||||
);
|
||||
name = "testfile";
|
||||
productInstallPath = "$(HOME)/bin";
|
||||
productName = "testfile";
|
||||
productReference = 5FF3088A3FCA05760C613507 /* testfile */;
|
||||
productType = "com.apple.product-type.tool";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
08FB7793FE84155DC02AAC07 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
buildConfigurationList = 1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testfile" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
hasScannedForEncodings = 1;
|
||||
mainGroup = 127B75A40BDB574C64C011B2 /* testfile */;
|
||||
projectDirPath = "";
|
||||
projectReferences = (
|
||||
{
|
||||
ProductGroup = 01CC07FB0EE71603201159C5 /* Products */;
|
||||
ProjectRef = 456E5690134259340D017AE0 /* SDL2main.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 1CB5571343E710DC6CBD7D10 /* Products */;
|
||||
ProjectRef = 0F804EE2031625A5344A6F0F /* SDL2.xcodeproj */;
|
||||
},
|
||||
);
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
76920DAF18017081649264B5 /* testfile */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXReferenceProxy section */
|
||||
35C672053AE7439058CF1E06 /* libSDL2main.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2main.a";
|
||||
remoteRef = 38DC1CE449A02EDB53A46F1F /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
021C28B302890B35602A095D /* libSDL2.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2.a";
|
||||
remoteRef = 36E065014BB04FEC2DB15E06 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
/* End PBXReferenceProxy section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
79DD48C9121F3797402D4FB7 /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
01E11129246D0B0B3A757724 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
12B9553A11444429616D59C6 /* testfile.c in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXVariantGroup section */
|
||||
/* End PBXVariantGroup section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
0642037E5B0A7E247DD625D8 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2main.a";
|
||||
targetProxy = 0A380900091C129F171F2BFD /* PBXContainerItemProxy */;
|
||||
};
|
||||
0FF60B471437282B2572614B /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2.a";
|
||||
targetProxy = 6B5928536FA55B7D231549C8 /* PBXContainerItemProxy */;
|
||||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
61FD528536756017160E2A9A /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testfile";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
7D1456CC29F75068168B06F0 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testfile";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
099144B44387563140BD56F3 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testfile";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
60443F5A4CB24B6C4ADA400A /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testfile";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
79BD72FE3C0726174BD74E5C /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
1DB90350172C67C955AE2FC4 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
27D533A317124927334E5EF9 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
6242645C6E6F54DF173B37D8 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
1FAE5CF509DF4EEA07F2584A /* Build configuration list for PBXNativeTarget "testfile" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
61FD528536756017160E2A9A /* Debug Universal */,
|
||||
7D1456CC29F75068168B06F0 /* Debug Native */,
|
||||
099144B44387563140BD56F3 /* Release Universal */,
|
||||
60443F5A4CB24B6C4ADA400A /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testfile" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
79BD72FE3C0726174BD74E5C /* Debug Universal */,
|
||||
1DB90350172C67C955AE2FC4 /* Debug Native */,
|
||||
27D533A317124927334E5EF9 /* Release Universal */,
|
||||
6242645C6E6F54DF173B37D8 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
|
||||
};
|
||||
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
|
||||
}
|
|
@ -0,0 +1,457 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 45;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
27E66D265BFC2650651E4B38 /* testfilesystem.c in Sources */ = {isa = PBXBuildFile; fileRef = 45BB219C3EC9278B49857862 /* testfilesystem.c */; };
|
||||
77FC574654B778A551877854 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0AFD68905EC649D96E4C7A51 /* AudioToolbox.framework */; };
|
||||
7846719321C40AE750F0553A /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0410628B1FD919E525D558CE /* AudioUnit.framework */; };
|
||||
4CDE1E2A5C9029E91529548C /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0A043B22584C7EF064861EE5 /* Cocoa.framework */; };
|
||||
71C77EC41B4C397541A20C68 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 691D0D8614D746ED17456982 /* CoreAudio.framework */; };
|
||||
73A919636FA61D1D75C101D3 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 08F2058C46B744A554905355 /* IOKit.framework */; };
|
||||
09357EAD401D5D4E404D1FF2 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 759E092842380861577E3702 /* Carbon.framework */; };
|
||||
096B0BDE5038152418B8738D /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 060976CA07D36B2376BC3712 /* ForceFeedback.framework */; };
|
||||
1B334ABF5FDC0E7B537D42A3 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 35374492037A75A608B81AD5 /* CoreFoundation.framework */; };
|
||||
3295050547D71A677D460AA6 /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 18CA7C7B228E53A519724694 /* OpenGL.framework */; };
|
||||
5D11444E630018235EAB3E64 /* libSDL2main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6A747965580349D150D57EF6 /* libSDL2main.a */; };
|
||||
33BB585C23E73DE9408309AA /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D7560977F5615AD16180488 /* libSDL2.a */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
30DA764F5A5521A573D61963 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 49275E85719B264124914A2D /* SDL2main.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 58DC62993160374E09FF7AD6;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
60D14612560364111E0178B0 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 49275E85719B264124914A2D /* SDL2main.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 0E7126A94A11494963D3548B;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
69AD0D501B3C317F0C580F4D /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 1FD25363099744B34525215C /* SDL2.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 07D004B11E733F1F0EA93105;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
377F77233C07298E5B4C00D8 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 1FD25363099744B34525215C /* SDL2.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 58C10ED14175754444033E0E;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
45BB219C3EC9278B49857862 /* testfilesystem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testfilesystem.c"; path = "../../../../../test/testfilesystem.c"; sourceTree = "<group>"; };
|
||||
0AFD68905EC649D96E4C7A51 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioToolbox.framework"; path = "/System/Library/Frameworks/AudioToolbox.framework"; sourceTree = "<absolute>"; };
|
||||
0410628B1FD919E525D558CE /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioUnit.framework"; path = "/System/Library/Frameworks/AudioUnit.framework"; sourceTree = "<absolute>"; };
|
||||
0A043B22584C7EF064861EE5 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Cocoa.framework"; path = "/System/Library/Frameworks/Cocoa.framework"; sourceTree = "<absolute>"; };
|
||||
691D0D8614D746ED17456982 /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreAudio.framework"; path = "/System/Library/Frameworks/CoreAudio.framework"; sourceTree = "<absolute>"; };
|
||||
08F2058C46B744A554905355 /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "IOKit.framework"; path = "/System/Library/Frameworks/IOKit.framework"; sourceTree = "<absolute>"; };
|
||||
759E092842380861577E3702 /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Carbon.framework"; path = "/System/Library/Frameworks/Carbon.framework"; sourceTree = "<absolute>"; };
|
||||
060976CA07D36B2376BC3712 /* ForceFeedback.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "ForceFeedback.framework"; path = "/System/Library/Frameworks/ForceFeedback.framework"; sourceTree = "<absolute>"; };
|
||||
35374492037A75A608B81AD5 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreFoundation.framework"; path = "/System/Library/Frameworks/CoreFoundation.framework"; sourceTree = "<absolute>"; };
|
||||
18CA7C7B228E53A519724694 /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "OpenGL.framework"; path = "/System/Library/Frameworks/OpenGL.framework"; sourceTree = "<absolute>"; };
|
||||
4B6F7519691E6F53450A4308 /* testfilesystem */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = "testfilesystem"; path = "testfilesystem"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
49275E85719B264124914A2D /* SDL2main.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2main.xcodeproj"; path = "../../SDL2main/SDL2main.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
1FD25363099744B34525215C /* SDL2.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2.xcodeproj"; path = "../../SDL2/SDL2.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
2F8171991948033524C8557A /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
77FC574654B778A551877854 /* AudioToolbox.framework in Frameworks */,
|
||||
7846719321C40AE750F0553A /* AudioUnit.framework in Frameworks */,
|
||||
4CDE1E2A5C9029E91529548C /* Cocoa.framework in Frameworks */,
|
||||
71C77EC41B4C397541A20C68 /* CoreAudio.framework in Frameworks */,
|
||||
73A919636FA61D1D75C101D3 /* IOKit.framework in Frameworks */,
|
||||
09357EAD401D5D4E404D1FF2 /* Carbon.framework in Frameworks */,
|
||||
096B0BDE5038152418B8738D /* ForceFeedback.framework in Frameworks */,
|
||||
1B334ABF5FDC0E7B537D42A3 /* CoreFoundation.framework in Frameworks */,
|
||||
3295050547D71A677D460AA6 /* OpenGL.framework in Frameworks */,
|
||||
5D11444E630018235EAB3E64 /* libSDL2main.a in Frameworks */,
|
||||
33BB585C23E73DE9408309AA /* libSDL2.a in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
228378B62E4B79B824FA2CDB /* testfilesystem */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
6B305B5814E6255063D41724 /* test */,
|
||||
7F57504E46CF4BD72E4E367C /* Frameworks */,
|
||||
26743E38796029944A6F72AE /* Products */,
|
||||
37992E8C18BA0C8724E741B2 /* Projects */,
|
||||
);
|
||||
name = "testfilesystem";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
6B305B5814E6255063D41724 /* test */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
45BB219C3EC9278B49857862 /* testfilesystem.c */,
|
||||
);
|
||||
name = "test";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
7F57504E46CF4BD72E4E367C /* Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
0AFD68905EC649D96E4C7A51 /* AudioToolbox.framework */,
|
||||
0410628B1FD919E525D558CE /* AudioUnit.framework */,
|
||||
0A043B22584C7EF064861EE5 /* Cocoa.framework */,
|
||||
691D0D8614D746ED17456982 /* CoreAudio.framework */,
|
||||
08F2058C46B744A554905355 /* IOKit.framework */,
|
||||
759E092842380861577E3702 /* Carbon.framework */,
|
||||
060976CA07D36B2376BC3712 /* ForceFeedback.framework */,
|
||||
35374492037A75A608B81AD5 /* CoreFoundation.framework */,
|
||||
18CA7C7B228E53A519724694 /* OpenGL.framework */,
|
||||
);
|
||||
name = "Frameworks";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
26743E38796029944A6F72AE /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
4B6F7519691E6F53450A4308 /* testfilesystem */,
|
||||
);
|
||||
name = "Products";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
37992E8C18BA0C8724E741B2 /* Projects */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
49275E85719B264124914A2D /* SDL2main.xcodeproj */,
|
||||
1FD25363099744B34525215C /* SDL2.xcodeproj */,
|
||||
);
|
||||
name = "Projects";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
208C029A7C8D35585AA05BD1 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
6A747965580349D150D57EF6 /* libSDL2main.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
32D168EC72AD7D4A2B4B7873 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
4D7560977F5615AD16180488 /* libSDL2.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
73521CE863C65C4A30CC6158 /* testfilesystem */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 033C0E7749924D4F25B20601 /* Build configuration list for PBXNativeTarget "testfilesystem" */;
|
||||
buildPhases = (
|
||||
33A320283E6D7E241EB93586 /* Resources */,
|
||||
1E2E1F971B4F0FDB1D765FBD /* Sources */,
|
||||
2F8171991948033524C8557A /* Frameworks */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
76BF0ECC2BBB374D47417EE8 /* PBXTargetDependency */,
|
||||
740D06C1769C3387062635BB /* PBXTargetDependency */,
|
||||
);
|
||||
name = "testfilesystem";
|
||||
productInstallPath = "$(HOME)/bin";
|
||||
productName = "testfilesystem";
|
||||
productReference = 4B6F7519691E6F53450A4308 /* testfilesystem */;
|
||||
productType = "com.apple.product-type.tool";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
08FB7793FE84155DC02AAC07 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
buildConfigurationList = 1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testfilesystem" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
hasScannedForEncodings = 1;
|
||||
mainGroup = 228378B62E4B79B824FA2CDB /* testfilesystem */;
|
||||
projectDirPath = "";
|
||||
projectReferences = (
|
||||
{
|
||||
ProductGroup = 208C029A7C8D35585AA05BD1 /* Products */;
|
||||
ProjectRef = 49275E85719B264124914A2D /* SDL2main.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 32D168EC72AD7D4A2B4B7873 /* Products */;
|
||||
ProjectRef = 1FD25363099744B34525215C /* SDL2.xcodeproj */;
|
||||
},
|
||||
);
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
73521CE863C65C4A30CC6158 /* testfilesystem */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXReferenceProxy section */
|
||||
6A747965580349D150D57EF6 /* libSDL2main.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2main.a";
|
||||
remoteRef = 30DA764F5A5521A573D61963 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
4D7560977F5615AD16180488 /* libSDL2.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2.a";
|
||||
remoteRef = 69AD0D501B3C317F0C580F4D /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
/* End PBXReferenceProxy section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
33A320283E6D7E241EB93586 /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
1E2E1F971B4F0FDB1D765FBD /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
27E66D265BFC2650651E4B38 /* testfilesystem.c in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXVariantGroup section */
|
||||
/* End PBXVariantGroup section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
76BF0ECC2BBB374D47417EE8 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2main.a";
|
||||
targetProxy = 60D14612560364111E0178B0 /* PBXContainerItemProxy */;
|
||||
};
|
||||
740D06C1769C3387062635BB /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2.a";
|
||||
targetProxy = 377F77233C07298E5B4C00D8 /* PBXContainerItemProxy */;
|
||||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
259C4DB274491080504F1823 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testfilesystem";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
488A73136F12290744F81F69 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testfilesystem";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
76265D5C5AE117DA1E1501F0 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testfilesystem";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
482F473C5F1570B44B3C6013 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testfilesystem";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
601E58756D4D6E053A6A136A /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
5FCE036A5AD65182619A4EC1 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
6D097E32313C68B502EA741B /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
0345423E34A2156735376579 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
033C0E7749924D4F25B20601 /* Build configuration list for PBXNativeTarget "testfilesystem" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
259C4DB274491080504F1823 /* Debug Universal */,
|
||||
488A73136F12290744F81F69 /* Debug Native */,
|
||||
76265D5C5AE117DA1E1501F0 /* Release Universal */,
|
||||
482F473C5F1570B44B3C6013 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testfilesystem" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
601E58756D4D6E053A6A136A /* Debug Universal */,
|
||||
5FCE036A5AD65182619A4EC1 /* Debug Native */,
|
||||
6D097E32313C68B502EA741B /* Release Universal */,
|
||||
0345423E34A2156735376579 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
|
||||
};
|
||||
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
|
||||
}
|
|
@ -0,0 +1,457 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 45;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
2B50214C1E056A12707340ED /* testgamecontroller.c in Sources */ = {isa = PBXBuildFile; fileRef = 126D67D510C85A6C03E94C6D /* testgamecontroller.c */; };
|
||||
175443B0039F66FA44F00CA2 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 58953E952CAC6DD01BDB0794 /* AudioToolbox.framework */; };
|
||||
23972E076A404C4E1C816A1F /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 14AA2F4F732A6BC70AC45187 /* AudioUnit.framework */; };
|
||||
09640528131A21A9740F1CA5 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 225E044C4FC8055B1E940DF1 /* Cocoa.framework */; };
|
||||
44095B55423E7FE8090132BE /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 54D70ECF7998287258EE1144 /* CoreAudio.framework */; };
|
||||
7AFC733E003B2B3754EE0E5D /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F3C5314615675DD34597D63 /* IOKit.framework */; };
|
||||
5C59745B30E671640EED2159 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0246693730305EA55EDD0E6A /* Carbon.framework */; };
|
||||
64F52E933D7816FF7EB8688C /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 76DD426A60CF71EB7C5D74C5 /* ForceFeedback.framework */; };
|
||||
339C5AA512D653ED1946728B /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4EAC24372C0B341159A57E6B /* CoreFoundation.framework */; };
|
||||
73CF32C40BC53B191F0B2690 /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 38835CE205EB437E2C0673F7 /* OpenGL.framework */; };
|
||||
09203C322CAE13134E54004E /* libSDL2main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 18FC77EF04CC142539507250 /* libSDL2main.a */; };
|
||||
2A386E15636D434D7E381E71 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 527B47453AED59E42BB50570 /* libSDL2.a */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
30DA5E641EDA17C8510930B6 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 70002B414DB7446C17E9573F /* SDL2main.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 58DC62993160374E09FF7AD6;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
0D8B2DB9636F4A4038846A56 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 70002B414DB7446C17E9573F /* SDL2main.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 0E7126A94A11494963D3548B;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
53C06F4B64E45CCA63FF1144 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 28C7455508C14E8E683C4B61 /* SDL2.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 07D004B11E733F1F0EA93105;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
410A02AE7ED221353FBE069A /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 28C7455508C14E8E683C4B61 /* SDL2.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 58C10ED14175754444033E0E;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
126D67D510C85A6C03E94C6D /* testgamecontroller.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testgamecontroller.c"; path = "../../../../../test/testgamecontroller.c"; sourceTree = "<group>"; };
|
||||
58953E952CAC6DD01BDB0794 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioToolbox.framework"; path = "/System/Library/Frameworks/AudioToolbox.framework"; sourceTree = "<absolute>"; };
|
||||
14AA2F4F732A6BC70AC45187 /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioUnit.framework"; path = "/System/Library/Frameworks/AudioUnit.framework"; sourceTree = "<absolute>"; };
|
||||
225E044C4FC8055B1E940DF1 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Cocoa.framework"; path = "/System/Library/Frameworks/Cocoa.framework"; sourceTree = "<absolute>"; };
|
||||
54D70ECF7998287258EE1144 /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreAudio.framework"; path = "/System/Library/Frameworks/CoreAudio.framework"; sourceTree = "<absolute>"; };
|
||||
0F3C5314615675DD34597D63 /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "IOKit.framework"; path = "/System/Library/Frameworks/IOKit.framework"; sourceTree = "<absolute>"; };
|
||||
0246693730305EA55EDD0E6A /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Carbon.framework"; path = "/System/Library/Frameworks/Carbon.framework"; sourceTree = "<absolute>"; };
|
||||
76DD426A60CF71EB7C5D74C5 /* ForceFeedback.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "ForceFeedback.framework"; path = "/System/Library/Frameworks/ForceFeedback.framework"; sourceTree = "<absolute>"; };
|
||||
4EAC24372C0B341159A57E6B /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreFoundation.framework"; path = "/System/Library/Frameworks/CoreFoundation.framework"; sourceTree = "<absolute>"; };
|
||||
38835CE205EB437E2C0673F7 /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "OpenGL.framework"; path = "/System/Library/Frameworks/OpenGL.framework"; sourceTree = "<absolute>"; };
|
||||
13831EFD797E6C5158677C65 /* testgamecontroller */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = "testgamecontroller"; path = "testgamecontroller"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
70002B414DB7446C17E9573F /* SDL2main.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2main.xcodeproj"; path = "../../SDL2main/SDL2main.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
28C7455508C14E8E683C4B61 /* SDL2.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2.xcodeproj"; path = "../../SDL2/SDL2.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
2D927D1A71FE0F0E76103B07 /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
175443B0039F66FA44F00CA2 /* AudioToolbox.framework in Frameworks */,
|
||||
23972E076A404C4E1C816A1F /* AudioUnit.framework in Frameworks */,
|
||||
09640528131A21A9740F1CA5 /* Cocoa.framework in Frameworks */,
|
||||
44095B55423E7FE8090132BE /* CoreAudio.framework in Frameworks */,
|
||||
7AFC733E003B2B3754EE0E5D /* IOKit.framework in Frameworks */,
|
||||
5C59745B30E671640EED2159 /* Carbon.framework in Frameworks */,
|
||||
64F52E933D7816FF7EB8688C /* ForceFeedback.framework in Frameworks */,
|
||||
339C5AA512D653ED1946728B /* CoreFoundation.framework in Frameworks */,
|
||||
73CF32C40BC53B191F0B2690 /* OpenGL.framework in Frameworks */,
|
||||
09203C322CAE13134E54004E /* libSDL2main.a in Frameworks */,
|
||||
2A386E15636D434D7E381E71 /* libSDL2.a in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
70D736877EDD78F474EB0928 /* testgamecontroller */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
3A3461B06BA41D46778E2878 /* test */,
|
||||
269736B127155C4B4D22059A /* Frameworks */,
|
||||
6B654C6F240F62EB6D786C56 /* Products */,
|
||||
30890C4657722CB6213E1005 /* Projects */,
|
||||
);
|
||||
name = "testgamecontroller";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
3A3461B06BA41D46778E2878 /* test */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
126D67D510C85A6C03E94C6D /* testgamecontroller.c */,
|
||||
);
|
||||
name = "test";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
269736B127155C4B4D22059A /* Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
58953E952CAC6DD01BDB0794 /* AudioToolbox.framework */,
|
||||
14AA2F4F732A6BC70AC45187 /* AudioUnit.framework */,
|
||||
225E044C4FC8055B1E940DF1 /* Cocoa.framework */,
|
||||
54D70ECF7998287258EE1144 /* CoreAudio.framework */,
|
||||
0F3C5314615675DD34597D63 /* IOKit.framework */,
|
||||
0246693730305EA55EDD0E6A /* Carbon.framework */,
|
||||
76DD426A60CF71EB7C5D74C5 /* ForceFeedback.framework */,
|
||||
4EAC24372C0B341159A57E6B /* CoreFoundation.framework */,
|
||||
38835CE205EB437E2C0673F7 /* OpenGL.framework */,
|
||||
);
|
||||
name = "Frameworks";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
6B654C6F240F62EB6D786C56 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
13831EFD797E6C5158677C65 /* testgamecontroller */,
|
||||
);
|
||||
name = "Products";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
30890C4657722CB6213E1005 /* Projects */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
70002B414DB7446C17E9573F /* SDL2main.xcodeproj */,
|
||||
28C7455508C14E8E683C4B61 /* SDL2.xcodeproj */,
|
||||
);
|
||||
name = "Projects";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
10BC462750667687322551BA /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
18FC77EF04CC142539507250 /* libSDL2main.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
4D2962B104CD402751E30FD4 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
527B47453AED59E42BB50570 /* libSDL2.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
50DB78277F1369ED01D62FB3 /* testgamecontroller */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 0D205F28786353DF0C9D23FA /* Build configuration list for PBXNativeTarget "testgamecontroller" */;
|
||||
buildPhases = (
|
||||
0FB81A643AA0146737222745 /* Resources */,
|
||||
5EE12B0161FD66BB3B514CB5 /* Sources */,
|
||||
2D927D1A71FE0F0E76103B07 /* Frameworks */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
6E5068B3775D048B7B762663 /* PBXTargetDependency */,
|
||||
2841674A502A31474B2B2EE5 /* PBXTargetDependency */,
|
||||
);
|
||||
name = "testgamecontroller";
|
||||
productInstallPath = "$(HOME)/bin";
|
||||
productName = "testgamecontroller";
|
||||
productReference = 13831EFD797E6C5158677C65 /* testgamecontroller */;
|
||||
productType = "com.apple.product-type.tool";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
08FB7793FE84155DC02AAC07 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
buildConfigurationList = 1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testgamecontroller" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
hasScannedForEncodings = 1;
|
||||
mainGroup = 70D736877EDD78F474EB0928 /* testgamecontroller */;
|
||||
projectDirPath = "";
|
||||
projectReferences = (
|
||||
{
|
||||
ProductGroup = 10BC462750667687322551BA /* Products */;
|
||||
ProjectRef = 70002B414DB7446C17E9573F /* SDL2main.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 4D2962B104CD402751E30FD4 /* Products */;
|
||||
ProjectRef = 28C7455508C14E8E683C4B61 /* SDL2.xcodeproj */;
|
||||
},
|
||||
);
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
50DB78277F1369ED01D62FB3 /* testgamecontroller */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXReferenceProxy section */
|
||||
18FC77EF04CC142539507250 /* libSDL2main.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2main.a";
|
||||
remoteRef = 30DA5E641EDA17C8510930B6 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
527B47453AED59E42BB50570 /* libSDL2.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2.a";
|
||||
remoteRef = 53C06F4B64E45CCA63FF1144 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
/* End PBXReferenceProxy section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
0FB81A643AA0146737222745 /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
5EE12B0161FD66BB3B514CB5 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
2B50214C1E056A12707340ED /* testgamecontroller.c in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXVariantGroup section */
|
||||
/* End PBXVariantGroup section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
6E5068B3775D048B7B762663 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2main.a";
|
||||
targetProxy = 0D8B2DB9636F4A4038846A56 /* PBXContainerItemProxy */;
|
||||
};
|
||||
2841674A502A31474B2B2EE5 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2.a";
|
||||
targetProxy = 410A02AE7ED221353FBE069A /* PBXContainerItemProxy */;
|
||||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
73B05ACF019855226AEE5BAB /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testgamecontroller";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
1EF568B634FD7A3C2034522E /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testgamecontroller";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
12B15B64065775074B364E9E /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testgamecontroller";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
256607DE339B214F5B512B9B /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testgamecontroller";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
3DEF3B3319B835312459064E /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
52AF631F14793DBC2AF809CF /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
05E91BF10FB5725B6AF478F9 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
686C3F5644061648739756A1 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
0D205F28786353DF0C9D23FA /* Build configuration list for PBXNativeTarget "testgamecontroller" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
73B05ACF019855226AEE5BAB /* Debug Universal */,
|
||||
1EF568B634FD7A3C2034522E /* Debug Native */,
|
||||
12B15B64065775074B364E9E /* Release Universal */,
|
||||
256607DE339B214F5B512B9B /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testgamecontroller" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
3DEF3B3319B835312459064E /* Debug Universal */,
|
||||
52AF631F14793DBC2AF809CF /* Debug Native */,
|
||||
05E91BF10FB5725B6AF478F9 /* Release Universal */,
|
||||
686C3F5644061648739756A1 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
|
||||
};
|
||||
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
|
||||
}
|
457
premake/Xcode/Xcode3/tests/testgesture/testgesture.xcodeproj/project.pbxproj
Executable file
457
premake/Xcode/Xcode3/tests/testgesture/testgesture.xcodeproj/project.pbxproj
Executable file
|
@ -0,0 +1,457 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 45;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
52354162254219EE76684ABE /* testgesture.c in Sources */ = {isa = PBXBuildFile; fileRef = 07DB579373F22595065E1C59 /* testgesture.c */; };
|
||||
3F42123E2E697F9E0DD741EE /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 713E56B060CB616F47E54128 /* AudioToolbox.framework */; };
|
||||
35E033C81DCD1B8D0561256B /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1B2B2ACC49260036069E2F4A /* AudioUnit.framework */; };
|
||||
258413E94648248B4E88698B /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 49DA3EB231D324B918422E8E /* Cocoa.framework */; };
|
||||
729D22CF02EA7FB35C1035EE /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 38CF4B521F3A3990392B57DF /* CoreAudio.framework */; };
|
||||
56B506D10D0F5CA4295056D5 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1EFF080F311513506C8D2AF3 /* IOKit.framework */; };
|
||||
0510734575430553302761F0 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 54F47A8D654D4D3770A50937 /* Carbon.framework */; };
|
||||
4CEE2F91710A71464A220D5A /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 693D5CF834BB16770AAD1C5F /* ForceFeedback.framework */; };
|
||||
2ABA54F276B375AB4B0D6777 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4C2A5B3D3480489954653D0D /* CoreFoundation.framework */; };
|
||||
4D77611D7300085D4DE63CA1 /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 63F66CDA77B535E15D2E0416 /* OpenGL.framework */; };
|
||||
02AB28D775B07A786BC961F7 /* libSDL2main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 392F75CE4C2078C309201BD6 /* libSDL2main.a */; };
|
||||
381A521865952C762D012938 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4DDE4FE4303847E451E94F08 /* libSDL2.a */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
43707FCD29B07F7C481D1A32 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 075F2A1B12B8177E0F322D60 /* SDL2main.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 58DC62993160374E09FF7AD6;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
00771E2C5FC10F8F7C5A0D8D /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 075F2A1B12B8177E0F322D60 /* SDL2main.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 0E7126A94A11494963D3548B;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
63D0165D42077F622F8A2C2D /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 2BFF78BF47B946F273021C53 /* SDL2.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 07D004B11E733F1F0EA93105;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
42482F692CC41EA42EDE23D1 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 2BFF78BF47B946F273021C53 /* SDL2.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 58C10ED14175754444033E0E;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
07DB579373F22595065E1C59 /* testgesture.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testgesture.c"; path = "../../../../../test/testgesture.c"; sourceTree = "<group>"; };
|
||||
713E56B060CB616F47E54128 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioToolbox.framework"; path = "/System/Library/Frameworks/AudioToolbox.framework"; sourceTree = "<absolute>"; };
|
||||
1B2B2ACC49260036069E2F4A /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioUnit.framework"; path = "/System/Library/Frameworks/AudioUnit.framework"; sourceTree = "<absolute>"; };
|
||||
49DA3EB231D324B918422E8E /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Cocoa.framework"; path = "/System/Library/Frameworks/Cocoa.framework"; sourceTree = "<absolute>"; };
|
||||
38CF4B521F3A3990392B57DF /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreAudio.framework"; path = "/System/Library/Frameworks/CoreAudio.framework"; sourceTree = "<absolute>"; };
|
||||
1EFF080F311513506C8D2AF3 /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "IOKit.framework"; path = "/System/Library/Frameworks/IOKit.framework"; sourceTree = "<absolute>"; };
|
||||
54F47A8D654D4D3770A50937 /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Carbon.framework"; path = "/System/Library/Frameworks/Carbon.framework"; sourceTree = "<absolute>"; };
|
||||
693D5CF834BB16770AAD1C5F /* ForceFeedback.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "ForceFeedback.framework"; path = "/System/Library/Frameworks/ForceFeedback.framework"; sourceTree = "<absolute>"; };
|
||||
4C2A5B3D3480489954653D0D /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreFoundation.framework"; path = "/System/Library/Frameworks/CoreFoundation.framework"; sourceTree = "<absolute>"; };
|
||||
63F66CDA77B535E15D2E0416 /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "OpenGL.framework"; path = "/System/Library/Frameworks/OpenGL.framework"; sourceTree = "<absolute>"; };
|
||||
4724438248DC05CC154031BE /* testgesture */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = "testgesture"; path = "testgesture"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
075F2A1B12B8177E0F322D60 /* SDL2main.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2main.xcodeproj"; path = "../../SDL2main/SDL2main.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
2BFF78BF47B946F273021C53 /* SDL2.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2.xcodeproj"; path = "../../SDL2/SDL2.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
5D7B67B06708403436B151AE /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
3F42123E2E697F9E0DD741EE /* AudioToolbox.framework in Frameworks */,
|
||||
35E033C81DCD1B8D0561256B /* AudioUnit.framework in Frameworks */,
|
||||
258413E94648248B4E88698B /* Cocoa.framework in Frameworks */,
|
||||
729D22CF02EA7FB35C1035EE /* CoreAudio.framework in Frameworks */,
|
||||
56B506D10D0F5CA4295056D5 /* IOKit.framework in Frameworks */,
|
||||
0510734575430553302761F0 /* Carbon.framework in Frameworks */,
|
||||
4CEE2F91710A71464A220D5A /* ForceFeedback.framework in Frameworks */,
|
||||
2ABA54F276B375AB4B0D6777 /* CoreFoundation.framework in Frameworks */,
|
||||
4D77611D7300085D4DE63CA1 /* OpenGL.framework in Frameworks */,
|
||||
02AB28D775B07A786BC961F7 /* libSDL2main.a in Frameworks */,
|
||||
381A521865952C762D012938 /* libSDL2.a in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
12DA479479947D0D648373F4 /* testgesture */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
425E62093FE7074F6C3C13E4 /* test */,
|
||||
305E740B33B4757C59760F0A /* Frameworks */,
|
||||
1AFE2FCD4B25165B66341EEA /* Products */,
|
||||
4B353CAD095349231EBF3FED /* Projects */,
|
||||
);
|
||||
name = "testgesture";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
425E62093FE7074F6C3C13E4 /* test */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
07DB579373F22595065E1C59 /* testgesture.c */,
|
||||
);
|
||||
name = "test";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
305E740B33B4757C59760F0A /* Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
713E56B060CB616F47E54128 /* AudioToolbox.framework */,
|
||||
1B2B2ACC49260036069E2F4A /* AudioUnit.framework */,
|
||||
49DA3EB231D324B918422E8E /* Cocoa.framework */,
|
||||
38CF4B521F3A3990392B57DF /* CoreAudio.framework */,
|
||||
1EFF080F311513506C8D2AF3 /* IOKit.framework */,
|
||||
54F47A8D654D4D3770A50937 /* Carbon.framework */,
|
||||
693D5CF834BB16770AAD1C5F /* ForceFeedback.framework */,
|
||||
4C2A5B3D3480489954653D0D /* CoreFoundation.framework */,
|
||||
63F66CDA77B535E15D2E0416 /* OpenGL.framework */,
|
||||
);
|
||||
name = "Frameworks";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
1AFE2FCD4B25165B66341EEA /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
4724438248DC05CC154031BE /* testgesture */,
|
||||
);
|
||||
name = "Products";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
4B353CAD095349231EBF3FED /* Projects */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
075F2A1B12B8177E0F322D60 /* SDL2main.xcodeproj */,
|
||||
2BFF78BF47B946F273021C53 /* SDL2.xcodeproj */,
|
||||
);
|
||||
name = "Projects";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
1610312040612DF626A67918 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
392F75CE4C2078C309201BD6 /* libSDL2main.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
15D219A078967452581305C7 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
4DDE4FE4303847E451E94F08 /* libSDL2.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
66781047381973FF17D26A04 /* testgesture */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 40D15D5F1F8C35FF14902558 /* Build configuration list for PBXNativeTarget "testgesture" */;
|
||||
buildPhases = (
|
||||
533F4EC70B78173C113A7938 /* Resources */,
|
||||
76602B80194C010908D63771 /* Sources */,
|
||||
5D7B67B06708403436B151AE /* Frameworks */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
35CD2C037E085207668E3370 /* PBXTargetDependency */,
|
||||
792C71B133801DF95EC01EBB /* PBXTargetDependency */,
|
||||
);
|
||||
name = "testgesture";
|
||||
productInstallPath = "$(HOME)/bin";
|
||||
productName = "testgesture";
|
||||
productReference = 4724438248DC05CC154031BE /* testgesture */;
|
||||
productType = "com.apple.product-type.tool";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
08FB7793FE84155DC02AAC07 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
buildConfigurationList = 1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testgesture" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
hasScannedForEncodings = 1;
|
||||
mainGroup = 12DA479479947D0D648373F4 /* testgesture */;
|
||||
projectDirPath = "";
|
||||
projectReferences = (
|
||||
{
|
||||
ProductGroup = 1610312040612DF626A67918 /* Products */;
|
||||
ProjectRef = 075F2A1B12B8177E0F322D60 /* SDL2main.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 15D219A078967452581305C7 /* Products */;
|
||||
ProjectRef = 2BFF78BF47B946F273021C53 /* SDL2.xcodeproj */;
|
||||
},
|
||||
);
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
66781047381973FF17D26A04 /* testgesture */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXReferenceProxy section */
|
||||
392F75CE4C2078C309201BD6 /* libSDL2main.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2main.a";
|
||||
remoteRef = 43707FCD29B07F7C481D1A32 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
4DDE4FE4303847E451E94F08 /* libSDL2.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2.a";
|
||||
remoteRef = 63D0165D42077F622F8A2C2D /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
/* End PBXReferenceProxy section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
533F4EC70B78173C113A7938 /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
76602B80194C010908D63771 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
52354162254219EE76684ABE /* testgesture.c in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXVariantGroup section */
|
||||
/* End PBXVariantGroup section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
35CD2C037E085207668E3370 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2main.a";
|
||||
targetProxy = 00771E2C5FC10F8F7C5A0D8D /* PBXContainerItemProxy */;
|
||||
};
|
||||
792C71B133801DF95EC01EBB /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2.a";
|
||||
targetProxy = 42482F692CC41EA42EDE23D1 /* PBXContainerItemProxy */;
|
||||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
60EC6119529B5A1737F62D9E /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testgesture";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
1F0A6CCD0DB571084C842C97 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testgesture";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
5620002D3061510A046E5C00 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testgesture";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
4F2F1BE226ED4B9E097565A5 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testgesture";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
0E787B8424FA1F024B987D9A /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
1D851472574840D635F16D20 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
25A1158D78146E2C2CB74B09 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
47AA0A943A447D1315B5547D /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
40D15D5F1F8C35FF14902558 /* Build configuration list for PBXNativeTarget "testgesture" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
60EC6119529B5A1737F62D9E /* Debug Universal */,
|
||||
1F0A6CCD0DB571084C842C97 /* Debug Native */,
|
||||
5620002D3061510A046E5C00 /* Release Universal */,
|
||||
4F2F1BE226ED4B9E097565A5 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testgesture" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
0E787B8424FA1F024B987D9A /* Debug Universal */,
|
||||
1D851472574840D635F16D20 /* Debug Native */,
|
||||
25A1158D78146E2C2CB74B09 /* Release Universal */,
|
||||
47AA0A943A447D1315B5547D /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
|
||||
};
|
||||
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
|
||||
}
|
504
premake/Xcode/Xcode3/tests/testgl2/testgl2.xcodeproj/project.pbxproj
Executable file
504
premake/Xcode/Xcode3/tests/testgl2/testgl2.xcodeproj/project.pbxproj
Executable file
|
@ -0,0 +1,504 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 45;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
45DC11BD255127A03296336D /* testgl2.c in Sources */ = {isa = PBXBuildFile; fileRef = 141F0FF40384619134F5534A /* testgl2.c */; };
|
||||
56AA4CF44B901545165959CE /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7FCF2FA52E266E6C2DF215F0 /* AudioToolbox.framework */; };
|
||||
4DFF554A0F4F2A407D5029A8 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C3A4036543A5F4D388077F8 /* AudioUnit.framework */; };
|
||||
23912E460FCD6BE5241A46B4 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 095F66393819011805762F15 /* Cocoa.framework */; };
|
||||
154169203C7D401344762C1D /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 593D3B6D19B2200F58A33791 /* CoreAudio.framework */; };
|
||||
403916CC66C752035BE06DED /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 580B463C369D259B765E3F8B /* IOKit.framework */; };
|
||||
7B4041BD67D8575275737815 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1DDB3420411900597E7212E8 /* Carbon.framework */; };
|
||||
362167D64276552A3FCE0750 /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 465334B02BF374DA55A82326 /* ForceFeedback.framework */; };
|
||||
15B32480703C137461EE702C /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2202391C16A95D7017F976C7 /* CoreFoundation.framework */; };
|
||||
44596FF238E219EE09EC7853 /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7EB81EF9772F48412C6E0F1B /* OpenGL.framework */; };
|
||||
72D05F7A733D343A0BC07480 /* libSDL2main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6B6555596B1273C930FE7894 /* libSDL2main.a */; };
|
||||
034941353E8045B46B1C7D86 /* libSDL2test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 59C679F76EEB2EBB04E2191E /* libSDL2test.a */; };
|
||||
05BD685071F731DE68AC13DC /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4CE6342660EF78D43EC23884 /* libSDL2.a */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
622C5D1C62FC444535862021 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 76A359E42D217A9505C34D0A /* SDL2main.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 58DC62993160374E09FF7AD6;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
7A670E185EB0770033CB69B6 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 76A359E42D217A9505C34D0A /* SDL2main.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 0E7126A94A11494963D3548B;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
33B7568362751D6A45F50EE1 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 14A50C9D21D625127E911EB8 /* SDL2test.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 1E1175156F97314C291323CB;
|
||||
remoteInfo = "libSDL2test.a";
|
||||
};
|
||||
0F66264E4AEB40445853393D /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 14A50C9D21D625127E911EB8 /* SDL2test.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 7CD70F5D43DA554D66287CFC;
|
||||
remoteInfo = "libSDL2test.a";
|
||||
};
|
||||
292F7EEB7FEE17460AF64BF2 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 1B5A3E4D6F33176919BB7DA4 /* SDL2.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 07D004B11E733F1F0EA93105;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
370D6ACE1AFA53D0137160E9 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 1B5A3E4D6F33176919BB7DA4 /* SDL2.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 58C10ED14175754444033E0E;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
141F0FF40384619134F5534A /* testgl2.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testgl2.c"; path = "../../../../../test/testgl2.c"; sourceTree = "<group>"; };
|
||||
7FCF2FA52E266E6C2DF215F0 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioToolbox.framework"; path = "/System/Library/Frameworks/AudioToolbox.framework"; sourceTree = "<absolute>"; };
|
||||
1C3A4036543A5F4D388077F8 /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioUnit.framework"; path = "/System/Library/Frameworks/AudioUnit.framework"; sourceTree = "<absolute>"; };
|
||||
095F66393819011805762F15 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Cocoa.framework"; path = "/System/Library/Frameworks/Cocoa.framework"; sourceTree = "<absolute>"; };
|
||||
593D3B6D19B2200F58A33791 /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreAudio.framework"; path = "/System/Library/Frameworks/CoreAudio.framework"; sourceTree = "<absolute>"; };
|
||||
580B463C369D259B765E3F8B /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "IOKit.framework"; path = "/System/Library/Frameworks/IOKit.framework"; sourceTree = "<absolute>"; };
|
||||
1DDB3420411900597E7212E8 /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Carbon.framework"; path = "/System/Library/Frameworks/Carbon.framework"; sourceTree = "<absolute>"; };
|
||||
465334B02BF374DA55A82326 /* ForceFeedback.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "ForceFeedback.framework"; path = "/System/Library/Frameworks/ForceFeedback.framework"; sourceTree = "<absolute>"; };
|
||||
2202391C16A95D7017F976C7 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreFoundation.framework"; path = "/System/Library/Frameworks/CoreFoundation.framework"; sourceTree = "<absolute>"; };
|
||||
7EB81EF9772F48412C6E0F1B /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "OpenGL.framework"; path = "/System/Library/Frameworks/OpenGL.framework"; sourceTree = "<absolute>"; };
|
||||
0BC6258F61B33D4C4B5562BF /* testgl2 */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = "testgl2"; path = "testgl2"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
76A359E42D217A9505C34D0A /* SDL2main.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2main.xcodeproj"; path = "../../SDL2main/SDL2main.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
14A50C9D21D625127E911EB8 /* SDL2test.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2test.xcodeproj"; path = "../../SDL2test/SDL2test.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
1B5A3E4D6F33176919BB7DA4 /* SDL2.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2.xcodeproj"; path = "../../SDL2/SDL2.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
209532DC294B22C61B922076 /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
56AA4CF44B901545165959CE /* AudioToolbox.framework in Frameworks */,
|
||||
4DFF554A0F4F2A407D5029A8 /* AudioUnit.framework in Frameworks */,
|
||||
23912E460FCD6BE5241A46B4 /* Cocoa.framework in Frameworks */,
|
||||
154169203C7D401344762C1D /* CoreAudio.framework in Frameworks */,
|
||||
403916CC66C752035BE06DED /* IOKit.framework in Frameworks */,
|
||||
7B4041BD67D8575275737815 /* Carbon.framework in Frameworks */,
|
||||
362167D64276552A3FCE0750 /* ForceFeedback.framework in Frameworks */,
|
||||
15B32480703C137461EE702C /* CoreFoundation.framework in Frameworks */,
|
||||
44596FF238E219EE09EC7853 /* OpenGL.framework in Frameworks */,
|
||||
72D05F7A733D343A0BC07480 /* libSDL2main.a in Frameworks */,
|
||||
034941353E8045B46B1C7D86 /* libSDL2test.a in Frameworks */,
|
||||
05BD685071F731DE68AC13DC /* libSDL2.a in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
465B1AE8216D001D17080EC6 /* testgl2 */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
0201256278614E1E16276DE2 /* test */,
|
||||
64A30E4903AE3ADF12CB5DEF /* Frameworks */,
|
||||
48E634A15AD81F141064337A /* Products */,
|
||||
4A133F5830377EFE62217CA4 /* Projects */,
|
||||
);
|
||||
name = "testgl2";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
0201256278614E1E16276DE2 /* test */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
141F0FF40384619134F5534A /* testgl2.c */,
|
||||
);
|
||||
name = "test";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
64A30E4903AE3ADF12CB5DEF /* Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
7FCF2FA52E266E6C2DF215F0 /* AudioToolbox.framework */,
|
||||
1C3A4036543A5F4D388077F8 /* AudioUnit.framework */,
|
||||
095F66393819011805762F15 /* Cocoa.framework */,
|
||||
593D3B6D19B2200F58A33791 /* CoreAudio.framework */,
|
||||
580B463C369D259B765E3F8B /* IOKit.framework */,
|
||||
1DDB3420411900597E7212E8 /* Carbon.framework */,
|
||||
465334B02BF374DA55A82326 /* ForceFeedback.framework */,
|
||||
2202391C16A95D7017F976C7 /* CoreFoundation.framework */,
|
||||
7EB81EF9772F48412C6E0F1B /* OpenGL.framework */,
|
||||
);
|
||||
name = "Frameworks";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
48E634A15AD81F141064337A /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
0BC6258F61B33D4C4B5562BF /* testgl2 */,
|
||||
);
|
||||
name = "Products";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
4A133F5830377EFE62217CA4 /* Projects */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
76A359E42D217A9505C34D0A /* SDL2main.xcodeproj */,
|
||||
14A50C9D21D625127E911EB8 /* SDL2test.xcodeproj */,
|
||||
1B5A3E4D6F33176919BB7DA4 /* SDL2.xcodeproj */,
|
||||
);
|
||||
name = "Projects";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
01700FE33BBA67BB27B03FA2 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
6B6555596B1273C930FE7894 /* libSDL2main.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
42B52595158160F46B595B6E /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
59C679F76EEB2EBB04E2191E /* libSDL2test.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
665B723C584D3457669F0662 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
4CE6342660EF78D43EC23884 /* libSDL2.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
09871A226783567418BC6E4B /* testgl2 */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 0E3F4B724866589D377D1E2D /* Build configuration list for PBXNativeTarget "testgl2" */;
|
||||
buildPhases = (
|
||||
426727121A5156BC56462CC3 /* Resources */,
|
||||
5A026C0341E5247444CE5D1D /* Sources */,
|
||||
209532DC294B22C61B922076 /* Frameworks */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
4CDD5FF708B6685E34E4230D /* PBXTargetDependency */,
|
||||
69650A577C703F645A88239C /* PBXTargetDependency */,
|
||||
12CB4F954B4949025E8F3839 /* PBXTargetDependency */,
|
||||
);
|
||||
name = "testgl2";
|
||||
productInstallPath = "$(HOME)/bin";
|
||||
productName = "testgl2";
|
||||
productReference = 0BC6258F61B33D4C4B5562BF /* testgl2 */;
|
||||
productType = "com.apple.product-type.tool";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
08FB7793FE84155DC02AAC07 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
buildConfigurationList = 1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testgl2" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
hasScannedForEncodings = 1;
|
||||
mainGroup = 465B1AE8216D001D17080EC6 /* testgl2 */;
|
||||
projectDirPath = "";
|
||||
projectReferences = (
|
||||
{
|
||||
ProductGroup = 01700FE33BBA67BB27B03FA2 /* Products */;
|
||||
ProjectRef = 76A359E42D217A9505C34D0A /* SDL2main.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 42B52595158160F46B595B6E /* Products */;
|
||||
ProjectRef = 14A50C9D21D625127E911EB8 /* SDL2test.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 665B723C584D3457669F0662 /* Products */;
|
||||
ProjectRef = 1B5A3E4D6F33176919BB7DA4 /* SDL2.xcodeproj */;
|
||||
},
|
||||
);
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
09871A226783567418BC6E4B /* testgl2 */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXReferenceProxy section */
|
||||
6B6555596B1273C930FE7894 /* libSDL2main.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2main.a";
|
||||
remoteRef = 622C5D1C62FC444535862021 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
59C679F76EEB2EBB04E2191E /* libSDL2test.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2test.a";
|
||||
remoteRef = 33B7568362751D6A45F50EE1 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
4CE6342660EF78D43EC23884 /* libSDL2.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2.a";
|
||||
remoteRef = 292F7EEB7FEE17460AF64BF2 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
/* End PBXReferenceProxy section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
426727121A5156BC56462CC3 /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
5A026C0341E5247444CE5D1D /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
45DC11BD255127A03296336D /* testgl2.c in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXVariantGroup section */
|
||||
/* End PBXVariantGroup section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
4CDD5FF708B6685E34E4230D /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2main.a";
|
||||
targetProxy = 7A670E185EB0770033CB69B6 /* PBXContainerItemProxy */;
|
||||
};
|
||||
69650A577C703F645A88239C /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2test.a";
|
||||
targetProxy = 0F66264E4AEB40445853393D /* PBXContainerItemProxy */;
|
||||
};
|
||||
12CB4F954B4949025E8F3839 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2.a";
|
||||
targetProxy = 370D6ACE1AFA53D0137160E9 /* PBXContainerItemProxy */;
|
||||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
04DF58A401A123F35F6227DC /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testgl2";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
11753A370B4E473167C3541A /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testgl2";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
336F7099534775236C4353F3 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testgl2";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
320B2B536322701915AB3BF8 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testgl2";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
0E88081B45496F9753180170 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
"HAVE_OPENGL",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
331B700F27E012D9685B2E60 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
"HAVE_OPENGL",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
16DE5F1A4C99731C4E3E4AD8 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
"HAVE_OPENGL",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
1E812F881D9870206906114B /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
"HAVE_OPENGL",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
0E3F4B724866589D377D1E2D /* Build configuration list for PBXNativeTarget "testgl2" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
04DF58A401A123F35F6227DC /* Debug Universal */,
|
||||
11753A370B4E473167C3541A /* Debug Native */,
|
||||
336F7099534775236C4353F3 /* Release Universal */,
|
||||
320B2B536322701915AB3BF8 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testgl2" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
0E88081B45496F9753180170 /* Debug Universal */,
|
||||
331B700F27E012D9685B2E60 /* Debug Native */,
|
||||
16DE5F1A4C99731C4E3E4AD8 /* Release Universal */,
|
||||
1E812F881D9870206906114B /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
|
||||
};
|
||||
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
|
||||
}
|
500
premake/Xcode/Xcode3/tests/testgles/testgles.xcodeproj/project.pbxproj
Executable file
500
premake/Xcode/Xcode3/tests/testgles/testgles.xcodeproj/project.pbxproj
Executable file
|
@ -0,0 +1,500 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 45;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
12E6555A195D655D76AB7FE7 /* testgles.c in Sources */ = {isa = PBXBuildFile; fileRef = 241A4D8509966F521DB96605 /* testgles.c */; };
|
||||
19795BC104CB34C45E135AED /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 29C434103F9900A855196701 /* AudioToolbox.framework */; };
|
||||
1A9E278937C233991A1240D9 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F0159CE1F5A03FB737D1886 /* AudioUnit.framework */; };
|
||||
5996326A75857CF20C70215A /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 71CA3644420E595D256119F7 /* Cocoa.framework */; };
|
||||
03636CCB238052184B4F5194 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3D3438EA4AC101261C9110D6 /* CoreAudio.framework */; };
|
||||
777004977662336A18A23F26 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C5761C0138F27263A284205 /* IOKit.framework */; };
|
||||
0A7A10E41D4C175E1DB4223C /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 065D03CF2E37393F5E900075 /* Carbon.framework */; };
|
||||
7D577CE807AB7E8A3EE76B08 /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 472D7ACE7C61038858644EAF /* ForceFeedback.framework */; };
|
||||
7E2C1EBA6D820BF93F50356B /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1A487B7D04DC3C37426321F9 /* CoreFoundation.framework */; };
|
||||
53DC2D0A2AE873D87B43109E /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 24E345CE65080603580B49A4 /* OpenGL.framework */; };
|
||||
7F0C00B5705C5E26218B356A /* libSDL2main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 735A4BF97F3056123C477376 /* libSDL2main.a */; };
|
||||
5D6D52C8514B468A1BCE3011 /* libSDL2test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 24B2285772D3379A7F433A59 /* libSDL2test.a */; };
|
||||
6F2C31FE41BA305E014C63E4 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 0B3551586B877E200CBA316F /* libSDL2.a */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
60625E0A184039DB663474EF /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 0996113878EF3AB7044A3085 /* SDL2main.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 58DC62993160374E09FF7AD6;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
0D0C48787B472E550CA07A11 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 0996113878EF3AB7044A3085 /* SDL2main.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 0E7126A94A11494963D3548B;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
65EE288F53050FD30E024D39 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 7C8120E92B5D6E196B952A4E /* SDL2test.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 1E1175156F97314C291323CB;
|
||||
remoteInfo = "libSDL2test.a";
|
||||
};
|
||||
680070780FEE6D3633973F7B /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 7C8120E92B5D6E196B952A4E /* SDL2test.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 7CD70F5D43DA554D66287CFC;
|
||||
remoteInfo = "libSDL2test.a";
|
||||
};
|
||||
6F5D71CC10306FE26D5A47FF /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 48D12E4C0DF01FB13E7F1DA8 /* SDL2.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 07D004B11E733F1F0EA93105;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
42B52D18274543E92B5B6F65 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 48D12E4C0DF01FB13E7F1DA8 /* SDL2.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 58C10ED14175754444033E0E;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
241A4D8509966F521DB96605 /* testgles.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testgles.c"; path = "../../../../../test/testgles.c"; sourceTree = "<group>"; };
|
||||
29C434103F9900A855196701 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioToolbox.framework"; path = "/System/Library/Frameworks/AudioToolbox.framework"; sourceTree = "<absolute>"; };
|
||||
7F0159CE1F5A03FB737D1886 /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioUnit.framework"; path = "/System/Library/Frameworks/AudioUnit.framework"; sourceTree = "<absolute>"; };
|
||||
71CA3644420E595D256119F7 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Cocoa.framework"; path = "/System/Library/Frameworks/Cocoa.framework"; sourceTree = "<absolute>"; };
|
||||
3D3438EA4AC101261C9110D6 /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreAudio.framework"; path = "/System/Library/Frameworks/CoreAudio.framework"; sourceTree = "<absolute>"; };
|
||||
6C5761C0138F27263A284205 /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "IOKit.framework"; path = "/System/Library/Frameworks/IOKit.framework"; sourceTree = "<absolute>"; };
|
||||
065D03CF2E37393F5E900075 /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Carbon.framework"; path = "/System/Library/Frameworks/Carbon.framework"; sourceTree = "<absolute>"; };
|
||||
472D7ACE7C61038858644EAF /* ForceFeedback.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "ForceFeedback.framework"; path = "/System/Library/Frameworks/ForceFeedback.framework"; sourceTree = "<absolute>"; };
|
||||
1A487B7D04DC3C37426321F9 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreFoundation.framework"; path = "/System/Library/Frameworks/CoreFoundation.framework"; sourceTree = "<absolute>"; };
|
||||
24E345CE65080603580B49A4 /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "OpenGL.framework"; path = "/System/Library/Frameworks/OpenGL.framework"; sourceTree = "<absolute>"; };
|
||||
688E4AA325C27C0B4DE93985 /* testgles */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = "testgles"; path = "testgles"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
0996113878EF3AB7044A3085 /* SDL2main.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2main.xcodeproj"; path = "../../SDL2main/SDL2main.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
7C8120E92B5D6E196B952A4E /* SDL2test.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2test.xcodeproj"; path = "../../SDL2test/SDL2test.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
48D12E4C0DF01FB13E7F1DA8 /* SDL2.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2.xcodeproj"; path = "../../SDL2/SDL2.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
61195EE80F49035904F30384 /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
19795BC104CB34C45E135AED /* AudioToolbox.framework in Frameworks */,
|
||||
1A9E278937C233991A1240D9 /* AudioUnit.framework in Frameworks */,
|
||||
5996326A75857CF20C70215A /* Cocoa.framework in Frameworks */,
|
||||
03636CCB238052184B4F5194 /* CoreAudio.framework in Frameworks */,
|
||||
777004977662336A18A23F26 /* IOKit.framework in Frameworks */,
|
||||
0A7A10E41D4C175E1DB4223C /* Carbon.framework in Frameworks */,
|
||||
7D577CE807AB7E8A3EE76B08 /* ForceFeedback.framework in Frameworks */,
|
||||
7E2C1EBA6D820BF93F50356B /* CoreFoundation.framework in Frameworks */,
|
||||
53DC2D0A2AE873D87B43109E /* OpenGL.framework in Frameworks */,
|
||||
7F0C00B5705C5E26218B356A /* libSDL2main.a in Frameworks */,
|
||||
5D6D52C8514B468A1BCE3011 /* libSDL2test.a in Frameworks */,
|
||||
6F2C31FE41BA305E014C63E4 /* libSDL2.a in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
17A905F262DF26E86D1A06ED /* testgles */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
44B346220B51319C389D6B05 /* test */,
|
||||
19DE5CE602953B250C466761 /* Frameworks */,
|
||||
78B41FCF563962081FDC583E /* Products */,
|
||||
06E262DA7BF8071F1180103A /* Projects */,
|
||||
);
|
||||
name = "testgles";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
44B346220B51319C389D6B05 /* test */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
241A4D8509966F521DB96605 /* testgles.c */,
|
||||
);
|
||||
name = "test";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
19DE5CE602953B250C466761 /* Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
29C434103F9900A855196701 /* AudioToolbox.framework */,
|
||||
7F0159CE1F5A03FB737D1886 /* AudioUnit.framework */,
|
||||
71CA3644420E595D256119F7 /* Cocoa.framework */,
|
||||
3D3438EA4AC101261C9110D6 /* CoreAudio.framework */,
|
||||
6C5761C0138F27263A284205 /* IOKit.framework */,
|
||||
065D03CF2E37393F5E900075 /* Carbon.framework */,
|
||||
472D7ACE7C61038858644EAF /* ForceFeedback.framework */,
|
||||
1A487B7D04DC3C37426321F9 /* CoreFoundation.framework */,
|
||||
24E345CE65080603580B49A4 /* OpenGL.framework */,
|
||||
);
|
||||
name = "Frameworks";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
78B41FCF563962081FDC583E /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
688E4AA325C27C0B4DE93985 /* testgles */,
|
||||
);
|
||||
name = "Products";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
06E262DA7BF8071F1180103A /* Projects */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
0996113878EF3AB7044A3085 /* SDL2main.xcodeproj */,
|
||||
7C8120E92B5D6E196B952A4E /* SDL2test.xcodeproj */,
|
||||
48D12E4C0DF01FB13E7F1DA8 /* SDL2.xcodeproj */,
|
||||
);
|
||||
name = "Projects";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
5CCE03C038CE6C8007C7533F /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
735A4BF97F3056123C477376 /* libSDL2main.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
4CA4399E75A335213A540466 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
24B2285772D3379A7F433A59 /* libSDL2test.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
64D21F91171E388B512D08F4 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
0B3551586B877E200CBA316F /* libSDL2.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
6FC5723312640035258E23A7 /* testgles */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 2A7B0CA6149577840FF2685B /* Build configuration list for PBXNativeTarget "testgles" */;
|
||||
buildPhases = (
|
||||
44163DE050017234528F64A1 /* Resources */,
|
||||
2C8849233F0D089127467B06 /* Sources */,
|
||||
61195EE80F49035904F30384 /* Frameworks */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
18F7300604A73072356D2120 /* PBXTargetDependency */,
|
||||
34DA5F3E1DEF6BC70000000B /* PBXTargetDependency */,
|
||||
78742F471BE7751D78371D9C /* PBXTargetDependency */,
|
||||
);
|
||||
name = "testgles";
|
||||
productInstallPath = "$(HOME)/bin";
|
||||
productName = "testgles";
|
||||
productReference = 688E4AA325C27C0B4DE93985 /* testgles */;
|
||||
productType = "com.apple.product-type.tool";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
08FB7793FE84155DC02AAC07 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
buildConfigurationList = 1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testgles" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
hasScannedForEncodings = 1;
|
||||
mainGroup = 17A905F262DF26E86D1A06ED /* testgles */;
|
||||
projectDirPath = "";
|
||||
projectReferences = (
|
||||
{
|
||||
ProductGroup = 5CCE03C038CE6C8007C7533F /* Products */;
|
||||
ProjectRef = 0996113878EF3AB7044A3085 /* SDL2main.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 4CA4399E75A335213A540466 /* Products */;
|
||||
ProjectRef = 7C8120E92B5D6E196B952A4E /* SDL2test.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 64D21F91171E388B512D08F4 /* Products */;
|
||||
ProjectRef = 48D12E4C0DF01FB13E7F1DA8 /* SDL2.xcodeproj */;
|
||||
},
|
||||
);
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
6FC5723312640035258E23A7 /* testgles */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXReferenceProxy section */
|
||||
735A4BF97F3056123C477376 /* libSDL2main.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2main.a";
|
||||
remoteRef = 60625E0A184039DB663474EF /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
24B2285772D3379A7F433A59 /* libSDL2test.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2test.a";
|
||||
remoteRef = 65EE288F53050FD30E024D39 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
0B3551586B877E200CBA316F /* libSDL2.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2.a";
|
||||
remoteRef = 6F5D71CC10306FE26D5A47FF /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
/* End PBXReferenceProxy section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
44163DE050017234528F64A1 /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
2C8849233F0D089127467B06 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
12E6555A195D655D76AB7FE7 /* testgles.c in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXVariantGroup section */
|
||||
/* End PBXVariantGroup section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
18F7300604A73072356D2120 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2main.a";
|
||||
targetProxy = 0D0C48787B472E550CA07A11 /* PBXContainerItemProxy */;
|
||||
};
|
||||
34DA5F3E1DEF6BC70000000B /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2test.a";
|
||||
targetProxy = 680070780FEE6D3633973F7B /* PBXContainerItemProxy */;
|
||||
};
|
||||
78742F471BE7751D78371D9C /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2.a";
|
||||
targetProxy = 42B52D18274543E92B5B6F65 /* PBXContainerItemProxy */;
|
||||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
2FC47005660448E2215567B3 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testgles";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
45FE67EC62480E8C0EC94BA2 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testgles";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
4ABE2FD422AA526A4FB64D2C /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testgles";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
4A8D220649E453AC462559B7 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testgles";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
2C0F3E1E519F33CD14FA482C /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
15381143051326761B1C75E9 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
44A94F96103E7CAD6A624F7F /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
30CA28B5385430D51A3462B8 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
2A7B0CA6149577840FF2685B /* Build configuration list for PBXNativeTarget "testgles" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
2FC47005660448E2215567B3 /* Debug Universal */,
|
||||
45FE67EC62480E8C0EC94BA2 /* Debug Native */,
|
||||
4ABE2FD422AA526A4FB64D2C /* Release Universal */,
|
||||
4A8D220649E453AC462559B7 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testgles" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
2C0F3E1E519F33CD14FA482C /* Debug Universal */,
|
||||
15381143051326761B1C75E9 /* Debug Native */,
|
||||
44A94F96103E7CAD6A624F7F /* Release Universal */,
|
||||
30CA28B5385430D51A3462B8 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
|
||||
};
|
||||
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
|
||||
}
|
457
premake/Xcode/Xcode3/tests/testhaptic/testhaptic.xcodeproj/project.pbxproj
Executable file
457
premake/Xcode/Xcode3/tests/testhaptic/testhaptic.xcodeproj/project.pbxproj
Executable file
|
@ -0,0 +1,457 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 45;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
59F50E2B39BC77DC3ECD4640 /* testhaptic.c in Sources */ = {isa = PBXBuildFile; fileRef = 1DB847C427EA0F444B4B4FC0 /* testhaptic.c */; };
|
||||
6179774414C80B03771B4D1F /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1408403C2E7331A83879467D /* AudioToolbox.framework */; };
|
||||
45CE764402F40F97189A30FC /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6BDE62C2453138766EB542CF /* AudioUnit.framework */; };
|
||||
24D54CFC45B1005E536540FE /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 29B1586B0BFB4A074B0F5B3B /* Cocoa.framework */; };
|
||||
2E9633335EE7194733506087 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1B1F202D013748602EA96A1F /* CoreAudio.framework */; };
|
||||
793C655802C108DC5A1603CC /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7032139D43855B2A3DA345CC /* IOKit.framework */; };
|
||||
68864CB73A65629C2D34335C /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 06AF7E814C06487468C37716 /* Carbon.framework */; };
|
||||
27BA615E079D63396FEC23A4 /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 126F3704120B219353BF4AE3 /* ForceFeedback.framework */; };
|
||||
160736E258B964640D9D79BA /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 01544B8A7A1F37C115280446 /* CoreFoundation.framework */; };
|
||||
558E796E47515366631902B9 /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5F3120474431725B4CF4428B /* OpenGL.framework */; };
|
||||
541C26D102115FD4093A47F8 /* libSDL2main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6CB511B1018C4FBD1F19617E /* libSDL2main.a */; };
|
||||
60C53756713009886F8129EA /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 29897FFF7AE350C831F9065D /* libSDL2.a */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
450D67A300D33EF705491E89 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 0C0F4A6E7D62458863F431FF /* SDL2main.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 58DC62993160374E09FF7AD6;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
645E5AAE6C712DF335755293 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 0C0F4A6E7D62458863F431FF /* SDL2main.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 0E7126A94A11494963D3548B;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
71F0553C5BBA1AE570F02A60 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 03181F213C260D2457796F54 /* SDL2.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 07D004B11E733F1F0EA93105;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
34C636D75FB114266D774F34 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 03181F213C260D2457796F54 /* SDL2.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 58C10ED14175754444033E0E;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
1DB847C427EA0F444B4B4FC0 /* testhaptic.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testhaptic.c"; path = "../../../../../test/testhaptic.c"; sourceTree = "<group>"; };
|
||||
1408403C2E7331A83879467D /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioToolbox.framework"; path = "/System/Library/Frameworks/AudioToolbox.framework"; sourceTree = "<absolute>"; };
|
||||
6BDE62C2453138766EB542CF /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioUnit.framework"; path = "/System/Library/Frameworks/AudioUnit.framework"; sourceTree = "<absolute>"; };
|
||||
29B1586B0BFB4A074B0F5B3B /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Cocoa.framework"; path = "/System/Library/Frameworks/Cocoa.framework"; sourceTree = "<absolute>"; };
|
||||
1B1F202D013748602EA96A1F /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreAudio.framework"; path = "/System/Library/Frameworks/CoreAudio.framework"; sourceTree = "<absolute>"; };
|
||||
7032139D43855B2A3DA345CC /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "IOKit.framework"; path = "/System/Library/Frameworks/IOKit.framework"; sourceTree = "<absolute>"; };
|
||||
06AF7E814C06487468C37716 /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Carbon.framework"; path = "/System/Library/Frameworks/Carbon.framework"; sourceTree = "<absolute>"; };
|
||||
126F3704120B219353BF4AE3 /* ForceFeedback.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "ForceFeedback.framework"; path = "/System/Library/Frameworks/ForceFeedback.framework"; sourceTree = "<absolute>"; };
|
||||
01544B8A7A1F37C115280446 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreFoundation.framework"; path = "/System/Library/Frameworks/CoreFoundation.framework"; sourceTree = "<absolute>"; };
|
||||
5F3120474431725B4CF4428B /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "OpenGL.framework"; path = "/System/Library/Frameworks/OpenGL.framework"; sourceTree = "<absolute>"; };
|
||||
12140D0C4C6D44C900626222 /* testhaptic */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = "testhaptic"; path = "testhaptic"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
0C0F4A6E7D62458863F431FF /* SDL2main.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2main.xcodeproj"; path = "../../SDL2main/SDL2main.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
03181F213C260D2457796F54 /* SDL2.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2.xcodeproj"; path = "../../SDL2/SDL2.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
5EA00FC55C7A5EDF384F5EDD /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
6179774414C80B03771B4D1F /* AudioToolbox.framework in Frameworks */,
|
||||
45CE764402F40F97189A30FC /* AudioUnit.framework in Frameworks */,
|
||||
24D54CFC45B1005E536540FE /* Cocoa.framework in Frameworks */,
|
||||
2E9633335EE7194733506087 /* CoreAudio.framework in Frameworks */,
|
||||
793C655802C108DC5A1603CC /* IOKit.framework in Frameworks */,
|
||||
68864CB73A65629C2D34335C /* Carbon.framework in Frameworks */,
|
||||
27BA615E079D63396FEC23A4 /* ForceFeedback.framework in Frameworks */,
|
||||
160736E258B964640D9D79BA /* CoreFoundation.framework in Frameworks */,
|
||||
558E796E47515366631902B9 /* OpenGL.framework in Frameworks */,
|
||||
541C26D102115FD4093A47F8 /* libSDL2main.a in Frameworks */,
|
||||
60C53756713009886F8129EA /* libSDL2.a in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
67B45C0D66CA748F0507306F /* testhaptic */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
66DE1C0E69BF3B2849D5642A /* test */,
|
||||
14E414A5128A5A3D7B2023E1 /* Frameworks */,
|
||||
48AC304A038C162A29342369 /* Products */,
|
||||
010E474B30072FBF3CFC63E2 /* Projects */,
|
||||
);
|
||||
name = "testhaptic";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
66DE1C0E69BF3B2849D5642A /* test */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
1DB847C427EA0F444B4B4FC0 /* testhaptic.c */,
|
||||
);
|
||||
name = "test";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
14E414A5128A5A3D7B2023E1 /* Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
1408403C2E7331A83879467D /* AudioToolbox.framework */,
|
||||
6BDE62C2453138766EB542CF /* AudioUnit.framework */,
|
||||
29B1586B0BFB4A074B0F5B3B /* Cocoa.framework */,
|
||||
1B1F202D013748602EA96A1F /* CoreAudio.framework */,
|
||||
7032139D43855B2A3DA345CC /* IOKit.framework */,
|
||||
06AF7E814C06487468C37716 /* Carbon.framework */,
|
||||
126F3704120B219353BF4AE3 /* ForceFeedback.framework */,
|
||||
01544B8A7A1F37C115280446 /* CoreFoundation.framework */,
|
||||
5F3120474431725B4CF4428B /* OpenGL.framework */,
|
||||
);
|
||||
name = "Frameworks";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
48AC304A038C162A29342369 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
12140D0C4C6D44C900626222 /* testhaptic */,
|
||||
);
|
||||
name = "Products";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
010E474B30072FBF3CFC63E2 /* Projects */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
0C0F4A6E7D62458863F431FF /* SDL2main.xcodeproj */,
|
||||
03181F213C260D2457796F54 /* SDL2.xcodeproj */,
|
||||
);
|
||||
name = "Projects";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
480439CD75176D0E386C6BDC /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
6CB511B1018C4FBD1F19617E /* libSDL2main.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
1F065A3302AD32D00BE23A4A /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
29897FFF7AE350C831F9065D /* libSDL2.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
312F0ABB19C846A84CB53A27 /* testhaptic */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 4D7D730D605E45A010DF3481 /* Build configuration list for PBXNativeTarget "testhaptic" */;
|
||||
buildPhases = (
|
||||
3A0D5AAE05F46B2A13675B25 /* Resources */,
|
||||
6E7D06AC1504471B4E3B32E5 /* Sources */,
|
||||
5EA00FC55C7A5EDF384F5EDD /* Frameworks */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
3D383CDA1C2B78E100F63058 /* PBXTargetDependency */,
|
||||
107B2B3356DF78FF5A9302A6 /* PBXTargetDependency */,
|
||||
);
|
||||
name = "testhaptic";
|
||||
productInstallPath = "$(HOME)/bin";
|
||||
productName = "testhaptic";
|
||||
productReference = 12140D0C4C6D44C900626222 /* testhaptic */;
|
||||
productType = "com.apple.product-type.tool";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
08FB7793FE84155DC02AAC07 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
buildConfigurationList = 1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testhaptic" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
hasScannedForEncodings = 1;
|
||||
mainGroup = 67B45C0D66CA748F0507306F /* testhaptic */;
|
||||
projectDirPath = "";
|
||||
projectReferences = (
|
||||
{
|
||||
ProductGroup = 480439CD75176D0E386C6BDC /* Products */;
|
||||
ProjectRef = 0C0F4A6E7D62458863F431FF /* SDL2main.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 1F065A3302AD32D00BE23A4A /* Products */;
|
||||
ProjectRef = 03181F213C260D2457796F54 /* SDL2.xcodeproj */;
|
||||
},
|
||||
);
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
312F0ABB19C846A84CB53A27 /* testhaptic */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXReferenceProxy section */
|
||||
6CB511B1018C4FBD1F19617E /* libSDL2main.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2main.a";
|
||||
remoteRef = 450D67A300D33EF705491E89 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
29897FFF7AE350C831F9065D /* libSDL2.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2.a";
|
||||
remoteRef = 71F0553C5BBA1AE570F02A60 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
/* End PBXReferenceProxy section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
3A0D5AAE05F46B2A13675B25 /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
6E7D06AC1504471B4E3B32E5 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
59F50E2B39BC77DC3ECD4640 /* testhaptic.c in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXVariantGroup section */
|
||||
/* End PBXVariantGroup section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
3D383CDA1C2B78E100F63058 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2main.a";
|
||||
targetProxy = 645E5AAE6C712DF335755293 /* PBXContainerItemProxy */;
|
||||
};
|
||||
107B2B3356DF78FF5A9302A6 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2.a";
|
||||
targetProxy = 34C636D75FB114266D774F34 /* PBXContainerItemProxy */;
|
||||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
068534B70F1E26297830190C /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testhaptic";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
26CE5B804873277736E51BD0 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testhaptic";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
0A706DF51C7E14FD1AD05E03 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testhaptic";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
373D05D241F56D402BDA7F09 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testhaptic";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
7E65562D5FE678C57E314BC1 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
1F071C371D63041C56C5244C /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
37451B5D01EF1CE448BC5895 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
528722B270F72709528E28F6 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
4D7D730D605E45A010DF3481 /* Build configuration list for PBXNativeTarget "testhaptic" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
068534B70F1E26297830190C /* Debug Universal */,
|
||||
26CE5B804873277736E51BD0 /* Debug Native */,
|
||||
0A706DF51C7E14FD1AD05E03 /* Release Universal */,
|
||||
373D05D241F56D402BDA7F09 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testhaptic" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
7E65562D5FE678C57E314BC1 /* Debug Universal */,
|
||||
1F071C371D63041C56C5244C /* Debug Native */,
|
||||
37451B5D01EF1CE448BC5895 /* Release Universal */,
|
||||
528722B270F72709528E28F6 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
|
||||
};
|
||||
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
|
||||
}
|
474
premake/Xcode/Xcode3/tests/testiconv/testiconv.xcodeproj/project.pbxproj
Executable file
474
premake/Xcode/Xcode3/tests/testiconv/testiconv.xcodeproj/project.pbxproj
Executable file
|
@ -0,0 +1,474 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 45;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
6A2279D13C4C3252465E71F6 /* testiconv.c in Sources */ = {isa = PBXBuildFile; fileRef = 355B073267DA1C532F9C64E8 /* testiconv.c */; };
|
||||
615F4AEB22F27C9E12B74147 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 45B8718637C864472C7963C2 /* AudioToolbox.framework */; };
|
||||
77F5772745E77D6931B04B08 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4A8058CA51FA2FD227B71243 /* AudioUnit.framework */; };
|
||||
20A4101D71B743801C3F7345 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B34592C60C4682D04025399 /* Cocoa.framework */; };
|
||||
269E6A3E48B22839364E530B /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 48C66BE91AF63E8E1D1E33EF /* CoreAudio.framework */; };
|
||||
092226E72E097B0652F36296 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1A3D521441115A9A6EA26E03 /* IOKit.framework */; };
|
||||
28B73F0D7D2B233B355E6E43 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 18DC4BE959C91D4F3FAF0A33 /* Carbon.framework */; };
|
||||
340D737868153D614AD5246C /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 28A5128C4E42708D7A4021A6 /* ForceFeedback.framework */; };
|
||||
22160C952BAF10DE1F0D385A /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6BB16CCF40D96EB61AAA453C /* CoreFoundation.framework */; };
|
||||
1EC263FC3CCD652438CD2BE6 /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 551A4C320C0A75F81A2F25F1 /* OpenGL.framework */; };
|
||||
68CF1BFA47FF42596EFF4442 /* libSDL2main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 61784B4D50322C5908E50E60 /* libSDL2main.a */; };
|
||||
0A8548A223350FD4357D3020 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3ED33F5A5C6B1A6A48703C84 /* libSDL2.a */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
78FF2E00306D741745246DC5 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 45881B3D6A3079C84A48739B /* SDL2main.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 58DC62993160374E09FF7AD6;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
45326B067C60183D7F2A2472 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 45881B3D6A3079C84A48739B /* SDL2main.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 0E7126A94A11494963D3548B;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
0C29120D309D2380587255B1 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 7A9B013F69BB7A9E264C7EF9 /* SDL2.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 07D004B11E733F1F0EA93105;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
772012CD053649584ED11159 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 7A9B013F69BB7A9E264C7EF9 /* SDL2.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 58C10ED14175754444033E0E;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
355B073267DA1C532F9C64E8 /* testiconv.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testiconv.c"; path = "../../../../../test/testiconv.c"; sourceTree = "<group>"; };
|
||||
45B8718637C864472C7963C2 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioToolbox.framework"; path = "/System/Library/Frameworks/AudioToolbox.framework"; sourceTree = "<absolute>"; };
|
||||
4A8058CA51FA2FD227B71243 /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioUnit.framework"; path = "/System/Library/Frameworks/AudioUnit.framework"; sourceTree = "<absolute>"; };
|
||||
3B34592C60C4682D04025399 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Cocoa.framework"; path = "/System/Library/Frameworks/Cocoa.framework"; sourceTree = "<absolute>"; };
|
||||
48C66BE91AF63E8E1D1E33EF /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreAudio.framework"; path = "/System/Library/Frameworks/CoreAudio.framework"; sourceTree = "<absolute>"; };
|
||||
1A3D521441115A9A6EA26E03 /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "IOKit.framework"; path = "/System/Library/Frameworks/IOKit.framework"; sourceTree = "<absolute>"; };
|
||||
18DC4BE959C91D4F3FAF0A33 /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Carbon.framework"; path = "/System/Library/Frameworks/Carbon.framework"; sourceTree = "<absolute>"; };
|
||||
28A5128C4E42708D7A4021A6 /* ForceFeedback.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "ForceFeedback.framework"; path = "/System/Library/Frameworks/ForceFeedback.framework"; sourceTree = "<absolute>"; };
|
||||
6BB16CCF40D96EB61AAA453C /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreFoundation.framework"; path = "/System/Library/Frameworks/CoreFoundation.framework"; sourceTree = "<absolute>"; };
|
||||
551A4C320C0A75F81A2F25F1 /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "OpenGL.framework"; path = "/System/Library/Frameworks/OpenGL.framework"; sourceTree = "<absolute>"; };
|
||||
7C44581E382C678639A07165 /* testiconv */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = "testiconv"; path = "testiconv"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
45881B3D6A3079C84A48739B /* SDL2main.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2main.xcodeproj"; path = "../../SDL2main/SDL2main.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
7A9B013F69BB7A9E264C7EF9 /* SDL2.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2.xcodeproj"; path = "../../SDL2/SDL2.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
4993751A0DB2391338FF263A /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
615F4AEB22F27C9E12B74147 /* AudioToolbox.framework in Frameworks */,
|
||||
77F5772745E77D6931B04B08 /* AudioUnit.framework in Frameworks */,
|
||||
20A4101D71B743801C3F7345 /* Cocoa.framework in Frameworks */,
|
||||
269E6A3E48B22839364E530B /* CoreAudio.framework in Frameworks */,
|
||||
092226E72E097B0652F36296 /* IOKit.framework in Frameworks */,
|
||||
28B73F0D7D2B233B355E6E43 /* Carbon.framework in Frameworks */,
|
||||
340D737868153D614AD5246C /* ForceFeedback.framework in Frameworks */,
|
||||
22160C952BAF10DE1F0D385A /* CoreFoundation.framework in Frameworks */,
|
||||
1EC263FC3CCD652438CD2BE6 /* OpenGL.framework in Frameworks */,
|
||||
68CF1BFA47FF42596EFF4442 /* libSDL2main.a in Frameworks */,
|
||||
0A8548A223350FD4357D3020 /* libSDL2.a in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
3F2E707864DD166F57CA4AEF /* testiconv */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
241D742D6A9B10385D083E64 /* test */,
|
||||
008C68AE381B31D66E154625 /* Frameworks */,
|
||||
182B54E133F749AC417A45B8 /* Products */,
|
||||
680C0B4E60E8423466903412 /* Projects */,
|
||||
);
|
||||
name = "testiconv";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
241D742D6A9B10385D083E64 /* test */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
355B073267DA1C532F9C64E8 /* testiconv.c */,
|
||||
);
|
||||
name = "test";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
008C68AE381B31D66E154625 /* Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
45B8718637C864472C7963C2 /* AudioToolbox.framework */,
|
||||
4A8058CA51FA2FD227B71243 /* AudioUnit.framework */,
|
||||
3B34592C60C4682D04025399 /* Cocoa.framework */,
|
||||
48C66BE91AF63E8E1D1E33EF /* CoreAudio.framework */,
|
||||
1A3D521441115A9A6EA26E03 /* IOKit.framework */,
|
||||
18DC4BE959C91D4F3FAF0A33 /* Carbon.framework */,
|
||||
28A5128C4E42708D7A4021A6 /* ForceFeedback.framework */,
|
||||
6BB16CCF40D96EB61AAA453C /* CoreFoundation.framework */,
|
||||
551A4C320C0A75F81A2F25F1 /* OpenGL.framework */,
|
||||
);
|
||||
name = "Frameworks";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
182B54E133F749AC417A45B8 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
7C44581E382C678639A07165 /* testiconv */,
|
||||
);
|
||||
name = "Products";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
680C0B4E60E8423466903412 /* Projects */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
45881B3D6A3079C84A48739B /* SDL2main.xcodeproj */,
|
||||
7A9B013F69BB7A9E264C7EF9 /* SDL2.xcodeproj */,
|
||||
);
|
||||
name = "Projects";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
5E744E323DF61B0B01916A66 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
61784B4D50322C5908E50E60 /* libSDL2main.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
4C4F723645B30A7A6C3D431C /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
3ED33F5A5C6B1A6A48703C84 /* libSDL2.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
5CCC58AE10AE326260794B34 /* testiconv */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 3B38692E7969686C31327012 /* Build configuration list for PBXNativeTarget "testiconv" */;
|
||||
buildPhases = (
|
||||
67090739556842CB41B439F0 /* Resources */,
|
||||
542019CC40DA68E754AE20BA /* Sources */,
|
||||
4993751A0DB2391338FF263A /* Frameworks */,
|
||||
9607AE3710C85E8F00CD1376 /* Postbuild */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
46694D6743F9414E0A461877 /* PBXTargetDependency */,
|
||||
7797690F694945A446C73504 /* PBXTargetDependency */,
|
||||
);
|
||||
name = "testiconv";
|
||||
productInstallPath = "$(HOME)/bin";
|
||||
productName = "testiconv";
|
||||
productReference = 7C44581E382C678639A07165 /* testiconv */;
|
||||
productType = "com.apple.product-type.tool";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
08FB7793FE84155DC02AAC07 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
buildConfigurationList = 1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testiconv" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
hasScannedForEncodings = 1;
|
||||
mainGroup = 3F2E707864DD166F57CA4AEF /* testiconv */;
|
||||
projectDirPath = "";
|
||||
projectReferences = (
|
||||
{
|
||||
ProductGroup = 5E744E323DF61B0B01916A66 /* Products */;
|
||||
ProjectRef = 45881B3D6A3079C84A48739B /* SDL2main.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 4C4F723645B30A7A6C3D431C /* Products */;
|
||||
ProjectRef = 7A9B013F69BB7A9E264C7EF9 /* SDL2.xcodeproj */;
|
||||
},
|
||||
);
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
5CCC58AE10AE326260794B34 /* testiconv */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXReferenceProxy section */
|
||||
61784B4D50322C5908E50E60 /* libSDL2main.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2main.a";
|
||||
remoteRef = 78FF2E00306D741745246DC5 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
3ED33F5A5C6B1A6A48703C84 /* libSDL2.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2.a";
|
||||
remoteRef = 0C29120D309D2380587255B1 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
/* End PBXReferenceProxy section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
67090739556842CB41B439F0 /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXShellScriptBuildPhase section */
|
||||
9607AE3710C85E8F00CD1376 /* Postbuild */ = {
|
||||
isa = PBXShellScriptBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
inputPaths = (
|
||||
);
|
||||
name = Postbuild;
|
||||
outputPaths = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
shellPath = /bin/sh;
|
||||
shellScript = "if [ \"${CONFIGURATION}\" = \"Debug Universal\" ]; then\nif [ ! -d \"./Build/Debug\" ]; then mkdir -p \"./Build/Debug\"; fi\ncp \"./../../../../../test/utf8.txt\" \"./Build/Debug/utf8.txt\"\nfi\nif [ \"${CONFIGURATION}\" = \"Debug Native\" ]; then\nif [ ! -d \"./Build/Debug\" ]; then mkdir -p \"./Build/Debug\"; fi\ncp \"./../../../../../test/utf8.txt\" \"./Build/Debug/utf8.txt\"\nfi\nif [ \"${CONFIGURATION}\" = \"Release Universal\" ]; then\nif [ ! -d \"./Build/Release\" ]; then mkdir -p \"./Build/Release\"; fi\ncp \"./../../../../../test/utf8.txt\" \"./Build/Release/utf8.txt\"\nfi\nif [ \"${CONFIGURATION}\" = \"Release Native\" ]; then\nif [ ! -d \"./Build/Release\" ]; then mkdir -p \"./Build/Release\"; fi\ncp \"./../../../../../test/utf8.txt\" \"./Build/Release/utf8.txt\"\nfi";
|
||||
};
|
||||
/* End PBXShellScriptBuildPhase section */
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
542019CC40DA68E754AE20BA /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
6A2279D13C4C3252465E71F6 /* testiconv.c in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXVariantGroup section */
|
||||
/* End PBXVariantGroup section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
46694D6743F9414E0A461877 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2main.a";
|
||||
targetProxy = 45326B067C60183D7F2A2472 /* PBXContainerItemProxy */;
|
||||
};
|
||||
7797690F694945A446C73504 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2.a";
|
||||
targetProxy = 772012CD053649584ED11159 /* PBXContainerItemProxy */;
|
||||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
505335353418205A205A15C7 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testiconv";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
59AA33FF5426169720C71FB9 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testiconv";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
0D6B7A9B611B597E6FAA36A9 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testiconv";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
49AE52C85A660C8C74FE05F6 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testiconv";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
75CD2181558A6BE2794B3828 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
2FD811E157882FC610344766 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
1C404FC714CD5A472B7E6828 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
71F53DA9594439794E8053E4 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
3B38692E7969686C31327012 /* Build configuration list for PBXNativeTarget "testiconv" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
505335353418205A205A15C7 /* Debug Universal */,
|
||||
59AA33FF5426169720C71FB9 /* Debug Native */,
|
||||
0D6B7A9B611B597E6FAA36A9 /* Release Universal */,
|
||||
49AE52C85A660C8C74FE05F6 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testiconv" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
75CD2181558A6BE2794B3828 /* Debug Universal */,
|
||||
2FD811E157882FC610344766 /* Debug Native */,
|
||||
1C404FC714CD5A472B7E6828 /* Release Universal */,
|
||||
71F53DA9594439794E8053E4 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
|
||||
};
|
||||
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
|
||||
}
|
500
premake/Xcode/Xcode3/tests/testime/testime.xcodeproj/project.pbxproj
Executable file
500
premake/Xcode/Xcode3/tests/testime/testime.xcodeproj/project.pbxproj
Executable file
|
@ -0,0 +1,500 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 45;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
1EDB663620575F3054616AEB /* testime.c in Sources */ = {isa = PBXBuildFile; fileRef = 11A02A5F7E6943E269934106 /* testime.c */; };
|
||||
613052B57E3162A16B241A77 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F195173606E033879915ED6 /* AudioToolbox.framework */; };
|
||||
00EB7592040245EC40254D0F /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 310A41FA124B378F383C2325 /* AudioUnit.framework */; };
|
||||
6441758D13DC088E29607C64 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32CA18327EB352DF5A8D0B54 /* Cocoa.framework */; };
|
||||
57F87FD645CC7E9A3847664D /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0CEA64342A102110565F0FB5 /* CoreAudio.framework */; };
|
||||
5BA21E9A38D1262366AD6CD3 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 076C5E737F3D08FD55534ADA /* IOKit.framework */; };
|
||||
26E066AD77781CFB42535B92 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2FEA59A651FA0D0340794E81 /* Carbon.framework */; };
|
||||
59FB2D8F312B1BC342875718 /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 68D73105473A4CAE57B07517 /* ForceFeedback.framework */; };
|
||||
22C6225A72AF49B066FC55B9 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 73A83F313C8704897D5C5BDF /* CoreFoundation.framework */; };
|
||||
757D798F5C211E0F24A0135C /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6E284413593E133B2D9D2692 /* OpenGL.framework */; };
|
||||
113F63BE79BE46557BA72CA3 /* libSDL2main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2A5E09A54F041CAD5A88365B /* libSDL2main.a */; };
|
||||
730A4F453D55402B08817501 /* libSDL2test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2BF51AB17AFB19DD19A41D8A /* libSDL2test.a */; };
|
||||
0E1B35461F512D4C7285093B /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 21F827FF0C5816560BC3654A /* libSDL2.a */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
54A5423C7BCA2B9C127340A5 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 5462094A07E20B6524FE5114 /* SDL2main.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 58DC62993160374E09FF7AD6;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
165D46083E8C01E053817623 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 5462094A07E20B6524FE5114 /* SDL2main.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 0E7126A94A11494963D3548B;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
28205901017F5224480C3D77 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 1E827E317C8922E833D04EF6 /* SDL2test.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 1E1175156F97314C291323CB;
|
||||
remoteInfo = "libSDL2test.a";
|
||||
};
|
||||
6E0A77CE119C1F6747E47D49 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 1E827E317C8922E833D04EF6 /* SDL2test.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 7CD70F5D43DA554D66287CFC;
|
||||
remoteInfo = "libSDL2test.a";
|
||||
};
|
||||
18F53753498742003FB121F9 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 38710754324617266DDD04F7 /* SDL2.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 07D004B11E733F1F0EA93105;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
0A861DC31CC55AAA06123397 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 38710754324617266DDD04F7 /* SDL2.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 58C10ED14175754444033E0E;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
11A02A5F7E6943E269934106 /* testime.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testime.c"; path = "../../../../../test/testime.c"; sourceTree = "<group>"; };
|
||||
0F195173606E033879915ED6 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioToolbox.framework"; path = "/System/Library/Frameworks/AudioToolbox.framework"; sourceTree = "<absolute>"; };
|
||||
310A41FA124B378F383C2325 /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioUnit.framework"; path = "/System/Library/Frameworks/AudioUnit.framework"; sourceTree = "<absolute>"; };
|
||||
32CA18327EB352DF5A8D0B54 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Cocoa.framework"; path = "/System/Library/Frameworks/Cocoa.framework"; sourceTree = "<absolute>"; };
|
||||
0CEA64342A102110565F0FB5 /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreAudio.framework"; path = "/System/Library/Frameworks/CoreAudio.framework"; sourceTree = "<absolute>"; };
|
||||
076C5E737F3D08FD55534ADA /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "IOKit.framework"; path = "/System/Library/Frameworks/IOKit.framework"; sourceTree = "<absolute>"; };
|
||||
2FEA59A651FA0D0340794E81 /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Carbon.framework"; path = "/System/Library/Frameworks/Carbon.framework"; sourceTree = "<absolute>"; };
|
||||
68D73105473A4CAE57B07517 /* ForceFeedback.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "ForceFeedback.framework"; path = "/System/Library/Frameworks/ForceFeedback.framework"; sourceTree = "<absolute>"; };
|
||||
73A83F313C8704897D5C5BDF /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreFoundation.framework"; path = "/System/Library/Frameworks/CoreFoundation.framework"; sourceTree = "<absolute>"; };
|
||||
6E284413593E133B2D9D2692 /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "OpenGL.framework"; path = "/System/Library/Frameworks/OpenGL.framework"; sourceTree = "<absolute>"; };
|
||||
4CA851404B43468A269B3E01 /* testime */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = "testime"; path = "testime"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
5462094A07E20B6524FE5114 /* SDL2main.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2main.xcodeproj"; path = "../../SDL2main/SDL2main.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
1E827E317C8922E833D04EF6 /* SDL2test.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2test.xcodeproj"; path = "../../SDL2test/SDL2test.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
38710754324617266DDD04F7 /* SDL2.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2.xcodeproj"; path = "../../SDL2/SDL2.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
279D3A6C2AD91B503BB16619 /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
613052B57E3162A16B241A77 /* AudioToolbox.framework in Frameworks */,
|
||||
00EB7592040245EC40254D0F /* AudioUnit.framework in Frameworks */,
|
||||
6441758D13DC088E29607C64 /* Cocoa.framework in Frameworks */,
|
||||
57F87FD645CC7E9A3847664D /* CoreAudio.framework in Frameworks */,
|
||||
5BA21E9A38D1262366AD6CD3 /* IOKit.framework in Frameworks */,
|
||||
26E066AD77781CFB42535B92 /* Carbon.framework in Frameworks */,
|
||||
59FB2D8F312B1BC342875718 /* ForceFeedback.framework in Frameworks */,
|
||||
22C6225A72AF49B066FC55B9 /* CoreFoundation.framework in Frameworks */,
|
||||
757D798F5C211E0F24A0135C /* OpenGL.framework in Frameworks */,
|
||||
113F63BE79BE46557BA72CA3 /* libSDL2main.a in Frameworks */,
|
||||
730A4F453D55402B08817501 /* libSDL2test.a in Frameworks */,
|
||||
0E1B35461F512D4C7285093B /* libSDL2.a in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
24F8548E490A51AD73F90730 /* testime */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
6BB33D7558BA2E1B75BF736F /* test */,
|
||||
7BD372143CE254F05A8C5D64 /* Frameworks */,
|
||||
375B758901B86A48519C138A /* Products */,
|
||||
4EFA08CE1EBB16973AA86F38 /* Projects */,
|
||||
);
|
||||
name = "testime";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
6BB33D7558BA2E1B75BF736F /* test */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
11A02A5F7E6943E269934106 /* testime.c */,
|
||||
);
|
||||
name = "test";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
7BD372143CE254F05A8C5D64 /* Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
0F195173606E033879915ED6 /* AudioToolbox.framework */,
|
||||
310A41FA124B378F383C2325 /* AudioUnit.framework */,
|
||||
32CA18327EB352DF5A8D0B54 /* Cocoa.framework */,
|
||||
0CEA64342A102110565F0FB5 /* CoreAudio.framework */,
|
||||
076C5E737F3D08FD55534ADA /* IOKit.framework */,
|
||||
2FEA59A651FA0D0340794E81 /* Carbon.framework */,
|
||||
68D73105473A4CAE57B07517 /* ForceFeedback.framework */,
|
||||
73A83F313C8704897D5C5BDF /* CoreFoundation.framework */,
|
||||
6E284413593E133B2D9D2692 /* OpenGL.framework */,
|
||||
);
|
||||
name = "Frameworks";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
375B758901B86A48519C138A /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
4CA851404B43468A269B3E01 /* testime */,
|
||||
);
|
||||
name = "Products";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
4EFA08CE1EBB16973AA86F38 /* Projects */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
5462094A07E20B6524FE5114 /* SDL2main.xcodeproj */,
|
||||
1E827E317C8922E833D04EF6 /* SDL2test.xcodeproj */,
|
||||
38710754324617266DDD04F7 /* SDL2.xcodeproj */,
|
||||
);
|
||||
name = "Projects";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
012A701F34E341CB05904C33 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
2A5E09A54F041CAD5A88365B /* libSDL2main.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
7A720DF02CC428E4323831CD /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
2BF51AB17AFB19DD19A41D8A /* libSDL2test.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
673D575107FF0F490E53262C /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
21F827FF0C5816560BC3654A /* libSDL2.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
5FFB08CD6FAD6C5D5690093E /* testime */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 2B8A2D5531E53AAE047B2CE3 /* Build configuration list for PBXNativeTarget "testime" */;
|
||||
buildPhases = (
|
||||
754E61862C3B58FA1A10266B /* Resources */,
|
||||
57330AF227097B7B51BF0520 /* Sources */,
|
||||
279D3A6C2AD91B503BB16619 /* Frameworks */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
0E61258026E713E1306004CC /* PBXTargetDependency */,
|
||||
7865519B232C46546BCE250A /* PBXTargetDependency */,
|
||||
329A502618BD5F5E53733FD2 /* PBXTargetDependency */,
|
||||
);
|
||||
name = "testime";
|
||||
productInstallPath = "$(HOME)/bin";
|
||||
productName = "testime";
|
||||
productReference = 4CA851404B43468A269B3E01 /* testime */;
|
||||
productType = "com.apple.product-type.tool";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
08FB7793FE84155DC02AAC07 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
buildConfigurationList = 1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testime" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
hasScannedForEncodings = 1;
|
||||
mainGroup = 24F8548E490A51AD73F90730 /* testime */;
|
||||
projectDirPath = "";
|
||||
projectReferences = (
|
||||
{
|
||||
ProductGroup = 012A701F34E341CB05904C33 /* Products */;
|
||||
ProjectRef = 5462094A07E20B6524FE5114 /* SDL2main.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 7A720DF02CC428E4323831CD /* Products */;
|
||||
ProjectRef = 1E827E317C8922E833D04EF6 /* SDL2test.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 673D575107FF0F490E53262C /* Products */;
|
||||
ProjectRef = 38710754324617266DDD04F7 /* SDL2.xcodeproj */;
|
||||
},
|
||||
);
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
5FFB08CD6FAD6C5D5690093E /* testime */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXReferenceProxy section */
|
||||
2A5E09A54F041CAD5A88365B /* libSDL2main.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2main.a";
|
||||
remoteRef = 54A5423C7BCA2B9C127340A5 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
2BF51AB17AFB19DD19A41D8A /* libSDL2test.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2test.a";
|
||||
remoteRef = 28205901017F5224480C3D77 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
21F827FF0C5816560BC3654A /* libSDL2.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2.a";
|
||||
remoteRef = 18F53753498742003FB121F9 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
/* End PBXReferenceProxy section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
754E61862C3B58FA1A10266B /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
57330AF227097B7B51BF0520 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
1EDB663620575F3054616AEB /* testime.c in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXVariantGroup section */
|
||||
/* End PBXVariantGroup section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
0E61258026E713E1306004CC /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2main.a";
|
||||
targetProxy = 165D46083E8C01E053817623 /* PBXContainerItemProxy */;
|
||||
};
|
||||
7865519B232C46546BCE250A /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2test.a";
|
||||
targetProxy = 6E0A77CE119C1F6747E47D49 /* PBXContainerItemProxy */;
|
||||
};
|
||||
329A502618BD5F5E53733FD2 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2.a";
|
||||
targetProxy = 0A861DC31CC55AAA06123397 /* PBXContainerItemProxy */;
|
||||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
23ED296C0C2A473648331D5C /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testime";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
03B50744244969F6368C4505 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testime";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
7BBA1C27699F4CC86AED2AF5 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testime";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
0FDA5AD5740C46651330643A /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testime";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
359E3F731C044EE956800EDB /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
4FCB504F00B51B566B493E34 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
4B947464660212194E6646A3 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
4E4B20BF024641E002716FE0 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
2B8A2D5531E53AAE047B2CE3 /* Build configuration list for PBXNativeTarget "testime" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
23ED296C0C2A473648331D5C /* Debug Universal */,
|
||||
03B50744244969F6368C4505 /* Debug Native */,
|
||||
7BBA1C27699F4CC86AED2AF5 /* Release Universal */,
|
||||
0FDA5AD5740C46651330643A /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testime" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
359E3F731C044EE956800EDB /* Debug Universal */,
|
||||
4FCB504F00B51B566B493E34 /* Debug Native */,
|
||||
4B947464660212194E6646A3 /* Release Universal */,
|
||||
4E4B20BF024641E002716FE0 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
|
||||
};
|
||||
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
|
||||
}
|
457
premake/Xcode/Xcode3/tests/testjoystick/testjoystick.xcodeproj/project.pbxproj
Executable file
457
premake/Xcode/Xcode3/tests/testjoystick/testjoystick.xcodeproj/project.pbxproj
Executable file
|
@ -0,0 +1,457 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 45;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
437763EC237B697869BF2660 /* testjoystick.c in Sources */ = {isa = PBXBuildFile; fileRef = 575854C968D2339B42231A76 /* testjoystick.c */; };
|
||||
32AE52E40F9717233C0A72E3 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 49C3541826C0415B5BBB06CF /* AudioToolbox.framework */; };
|
||||
713701E9165222F508951B0E /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 429764A30EF679621FE318DF /* AudioUnit.framework */; };
|
||||
3305365658676BF47B865992 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 359B66B92AB97B052733203F /* Cocoa.framework */; };
|
||||
454009FE1676579236A11079 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0AF04ACE566B29673FCA039D /* CoreAudio.framework */; };
|
||||
467B73597DC93C1256A86A00 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7AC6150503393A7C64612020 /* IOKit.framework */; };
|
||||
0A43432E34B77E2616FB5EC5 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 35A71D31162C3E4B53563DA2 /* Carbon.framework */; };
|
||||
6A1914AC29146C09587E6BCE /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F8038BC5C9F6E2353B93128 /* ForceFeedback.framework */; };
|
||||
053233FE18FE0035423B3545 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5017524D691246A4654E7105 /* CoreFoundation.framework */; };
|
||||
586778620AFF201402161485 /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 002668CA5F860B982D337041 /* OpenGL.framework */; };
|
||||
45E75FAF008E7FC7028A6A19 /* libSDL2main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6B5B5AA2679776D81F72795B /* libSDL2main.a */; };
|
||||
622C508C579041352925795D /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1A9150BB258A36985B8F3E17 /* libSDL2.a */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
3C0976E362EC7ACF33A80284 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 45AB706D14D3355F03637630 /* SDL2main.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 58DC62993160374E09FF7AD6;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
3D93018001435A5871A13166 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 45AB706D14D3355F03637630 /* SDL2main.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 0E7126A94A11494963D3548B;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
449314BE6BB215CB4B027627 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 123161E85C4544221F2559D2 /* SDL2.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 07D004B11E733F1F0EA93105;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
10334206557652C1024D3BF6 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 123161E85C4544221F2559D2 /* SDL2.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 58C10ED14175754444033E0E;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
575854C968D2339B42231A76 /* testjoystick.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testjoystick.c"; path = "../../../../../test/testjoystick.c"; sourceTree = "<group>"; };
|
||||
49C3541826C0415B5BBB06CF /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioToolbox.framework"; path = "/System/Library/Frameworks/AudioToolbox.framework"; sourceTree = "<absolute>"; };
|
||||
429764A30EF679621FE318DF /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioUnit.framework"; path = "/System/Library/Frameworks/AudioUnit.framework"; sourceTree = "<absolute>"; };
|
||||
359B66B92AB97B052733203F /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Cocoa.framework"; path = "/System/Library/Frameworks/Cocoa.framework"; sourceTree = "<absolute>"; };
|
||||
0AF04ACE566B29673FCA039D /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreAudio.framework"; path = "/System/Library/Frameworks/CoreAudio.framework"; sourceTree = "<absolute>"; };
|
||||
7AC6150503393A7C64612020 /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "IOKit.framework"; path = "/System/Library/Frameworks/IOKit.framework"; sourceTree = "<absolute>"; };
|
||||
35A71D31162C3E4B53563DA2 /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Carbon.framework"; path = "/System/Library/Frameworks/Carbon.framework"; sourceTree = "<absolute>"; };
|
||||
0F8038BC5C9F6E2353B93128 /* ForceFeedback.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "ForceFeedback.framework"; path = "/System/Library/Frameworks/ForceFeedback.framework"; sourceTree = "<absolute>"; };
|
||||
5017524D691246A4654E7105 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreFoundation.framework"; path = "/System/Library/Frameworks/CoreFoundation.framework"; sourceTree = "<absolute>"; };
|
||||
002668CA5F860B982D337041 /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "OpenGL.framework"; path = "/System/Library/Frameworks/OpenGL.framework"; sourceTree = "<absolute>"; };
|
||||
7D16408B771F26DC39876A96 /* testjoystick */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = "testjoystick"; path = "testjoystick"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
45AB706D14D3355F03637630 /* SDL2main.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2main.xcodeproj"; path = "../../SDL2main/SDL2main.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
123161E85C4544221F2559D2 /* SDL2.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2.xcodeproj"; path = "../../SDL2/SDL2.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
42C7240B54E1220B2EA95DBD /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
32AE52E40F9717233C0A72E3 /* AudioToolbox.framework in Frameworks */,
|
||||
713701E9165222F508951B0E /* AudioUnit.framework in Frameworks */,
|
||||
3305365658676BF47B865992 /* Cocoa.framework in Frameworks */,
|
||||
454009FE1676579236A11079 /* CoreAudio.framework in Frameworks */,
|
||||
467B73597DC93C1256A86A00 /* IOKit.framework in Frameworks */,
|
||||
0A43432E34B77E2616FB5EC5 /* Carbon.framework in Frameworks */,
|
||||
6A1914AC29146C09587E6BCE /* ForceFeedback.framework in Frameworks */,
|
||||
053233FE18FE0035423B3545 /* CoreFoundation.framework in Frameworks */,
|
||||
586778620AFF201402161485 /* OpenGL.framework in Frameworks */,
|
||||
45E75FAF008E7FC7028A6A19 /* libSDL2main.a in Frameworks */,
|
||||
622C508C579041352925795D /* libSDL2.a in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
5ADA2C5D152B774B76495CA8 /* testjoystick */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
507764EB352B409244866236 /* test */,
|
||||
1C29022B74A07389548728F0 /* Frameworks */,
|
||||
42A706CA6D065E781AF14932 /* Products */,
|
||||
0C0326AD32E23D863D566494 /* Projects */,
|
||||
);
|
||||
name = "testjoystick";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
507764EB352B409244866236 /* test */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
575854C968D2339B42231A76 /* testjoystick.c */,
|
||||
);
|
||||
name = "test";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
1C29022B74A07389548728F0 /* Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
49C3541826C0415B5BBB06CF /* AudioToolbox.framework */,
|
||||
429764A30EF679621FE318DF /* AudioUnit.framework */,
|
||||
359B66B92AB97B052733203F /* Cocoa.framework */,
|
||||
0AF04ACE566B29673FCA039D /* CoreAudio.framework */,
|
||||
7AC6150503393A7C64612020 /* IOKit.framework */,
|
||||
35A71D31162C3E4B53563DA2 /* Carbon.framework */,
|
||||
0F8038BC5C9F6E2353B93128 /* ForceFeedback.framework */,
|
||||
5017524D691246A4654E7105 /* CoreFoundation.framework */,
|
||||
002668CA5F860B982D337041 /* OpenGL.framework */,
|
||||
);
|
||||
name = "Frameworks";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
42A706CA6D065E781AF14932 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
7D16408B771F26DC39876A96 /* testjoystick */,
|
||||
);
|
||||
name = "Products";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
0C0326AD32E23D863D566494 /* Projects */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
45AB706D14D3355F03637630 /* SDL2main.xcodeproj */,
|
||||
123161E85C4544221F2559D2 /* SDL2.xcodeproj */,
|
||||
);
|
||||
name = "Projects";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
2B1056A844DE7C4B5BC0272D /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
6B5B5AA2679776D81F72795B /* libSDL2main.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
365E0806554E015A7B6E2842 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
1A9150BB258A36985B8F3E17 /* libSDL2.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
58136F0736694FA50E6D28C3 /* testjoystick */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 6EB627E768094B9A14746E1F /* Build configuration list for PBXNativeTarget "testjoystick" */;
|
||||
buildPhases = (
|
||||
56B677F65199488F47EC0979 /* Resources */,
|
||||
012734B0155C5E2F62745B68 /* Sources */,
|
||||
42C7240B54E1220B2EA95DBD /* Frameworks */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
5AB129100A9E2922059D0B90 /* PBXTargetDependency */,
|
||||
4C1110393C10473F33C77DE9 /* PBXTargetDependency */,
|
||||
);
|
||||
name = "testjoystick";
|
||||
productInstallPath = "$(HOME)/bin";
|
||||
productName = "testjoystick";
|
||||
productReference = 7D16408B771F26DC39876A96 /* testjoystick */;
|
||||
productType = "com.apple.product-type.tool";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
08FB7793FE84155DC02AAC07 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
buildConfigurationList = 1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testjoystick" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
hasScannedForEncodings = 1;
|
||||
mainGroup = 5ADA2C5D152B774B76495CA8 /* testjoystick */;
|
||||
projectDirPath = "";
|
||||
projectReferences = (
|
||||
{
|
||||
ProductGroup = 2B1056A844DE7C4B5BC0272D /* Products */;
|
||||
ProjectRef = 45AB706D14D3355F03637630 /* SDL2main.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 365E0806554E015A7B6E2842 /* Products */;
|
||||
ProjectRef = 123161E85C4544221F2559D2 /* SDL2.xcodeproj */;
|
||||
},
|
||||
);
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
58136F0736694FA50E6D28C3 /* testjoystick */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXReferenceProxy section */
|
||||
6B5B5AA2679776D81F72795B /* libSDL2main.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2main.a";
|
||||
remoteRef = 3C0976E362EC7ACF33A80284 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
1A9150BB258A36985B8F3E17 /* libSDL2.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2.a";
|
||||
remoteRef = 449314BE6BB215CB4B027627 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
/* End PBXReferenceProxy section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
56B677F65199488F47EC0979 /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
012734B0155C5E2F62745B68 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
437763EC237B697869BF2660 /* testjoystick.c in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXVariantGroup section */
|
||||
/* End PBXVariantGroup section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
5AB129100A9E2922059D0B90 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2main.a";
|
||||
targetProxy = 3D93018001435A5871A13166 /* PBXContainerItemProxy */;
|
||||
};
|
||||
4C1110393C10473F33C77DE9 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2.a";
|
||||
targetProxy = 10334206557652C1024D3BF6 /* PBXContainerItemProxy */;
|
||||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
1FC4190475817C1B532D5135 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testjoystick";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
6D4424A6187F614C6441694A /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testjoystick";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
032255CC0451075503F37DCF /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testjoystick";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
6C2B055D48C7415E162B1403 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testjoystick";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
00B2311E41CD36C9682D0589 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
10FA3A95390A734D052D7A76 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
30FB4F30746477246A855D7B /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
6AF652E76AC2025066962FCC /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
6EB627E768094B9A14746E1F /* Build configuration list for PBXNativeTarget "testjoystick" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
1FC4190475817C1B532D5135 /* Debug Universal */,
|
||||
6D4424A6187F614C6441694A /* Debug Native */,
|
||||
032255CC0451075503F37DCF /* Release Universal */,
|
||||
6C2B055D48C7415E162B1403 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testjoystick" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
00B2311E41CD36C9682D0589 /* Debug Universal */,
|
||||
10FA3A95390A734D052D7A76 /* Debug Native */,
|
||||
30FB4F30746477246A855D7B /* Release Universal */,
|
||||
6AF652E76AC2025066962FCC /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
|
||||
};
|
||||
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
|
||||
}
|
457
premake/Xcode/Xcode3/tests/testkeys/testkeys.xcodeproj/project.pbxproj
Executable file
457
premake/Xcode/Xcode3/tests/testkeys/testkeys.xcodeproj/project.pbxproj
Executable file
|
@ -0,0 +1,457 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 45;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
3454339E0B591D55512979F8 /* testkeys.c in Sources */ = {isa = PBXBuildFile; fileRef = 1C720BA10F9E6CC45CFD7281 /* testkeys.c */; };
|
||||
01935D695566534E454A30BB /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C4723971A3D268A4E764B6F /* AudioToolbox.framework */; };
|
||||
55784AE65EA93DA470B63FFA /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0340006028F116AE106E56F6 /* AudioUnit.framework */; };
|
||||
2A210CA6216A44E314BA5FAE /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 735E611957E3050F1DCE735C /* Cocoa.framework */; };
|
||||
6DF45E5155386A7E7EB86A6E /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 574A58CB100E0E6B327132F4 /* CoreAudio.framework */; };
|
||||
0367126E1E9E340B5E9A62C6 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 15992A844307099064094347 /* IOKit.framework */; };
|
||||
59D60D784C917537297964C8 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 40CC2B93789450B26A7D3F43 /* Carbon.framework */; };
|
||||
6AFE0426017553E57F8E601F /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 426E56687A8557803F7A08FC /* ForceFeedback.framework */; };
|
||||
01640C276A89726C3BB9110E /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 38433C3216573B1A2C585D3F /* CoreFoundation.framework */; };
|
||||
57B2156D3A905F2665F012B0 /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 32E301B9385A51FC7E4911CD /* OpenGL.framework */; };
|
||||
455F748B7ED7642360CF3C6C /* libSDL2main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 52EA144432A502DF0D432C88 /* libSDL2main.a */; };
|
||||
465B117334D92A6008322145 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 4E9B31C101CA22D041426DBB /* libSDL2.a */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
207834E413575F6F720B4EEE /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 74185D3003874A2E2DA539B7 /* SDL2main.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 58DC62993160374E09FF7AD6;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
73690F737AF63949798E7526 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 74185D3003874A2E2DA539B7 /* SDL2main.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 0E7126A94A11494963D3548B;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
14EE4D1358324054597A7762 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 6D464B466F934BF407A37FA3 /* SDL2.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 07D004B11E733F1F0EA93105;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
5A7F5D8C3305441C1A12549A /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 6D464B466F934BF407A37FA3 /* SDL2.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 58C10ED14175754444033E0E;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
1C720BA10F9E6CC45CFD7281 /* testkeys.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testkeys.c"; path = "../../../../../test/testkeys.c"; sourceTree = "<group>"; };
|
||||
1C4723971A3D268A4E764B6F /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioToolbox.framework"; path = "/System/Library/Frameworks/AudioToolbox.framework"; sourceTree = "<absolute>"; };
|
||||
0340006028F116AE106E56F6 /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioUnit.framework"; path = "/System/Library/Frameworks/AudioUnit.framework"; sourceTree = "<absolute>"; };
|
||||
735E611957E3050F1DCE735C /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Cocoa.framework"; path = "/System/Library/Frameworks/Cocoa.framework"; sourceTree = "<absolute>"; };
|
||||
574A58CB100E0E6B327132F4 /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreAudio.framework"; path = "/System/Library/Frameworks/CoreAudio.framework"; sourceTree = "<absolute>"; };
|
||||
15992A844307099064094347 /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "IOKit.framework"; path = "/System/Library/Frameworks/IOKit.framework"; sourceTree = "<absolute>"; };
|
||||
40CC2B93789450B26A7D3F43 /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Carbon.framework"; path = "/System/Library/Frameworks/Carbon.framework"; sourceTree = "<absolute>"; };
|
||||
426E56687A8557803F7A08FC /* ForceFeedback.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "ForceFeedback.framework"; path = "/System/Library/Frameworks/ForceFeedback.framework"; sourceTree = "<absolute>"; };
|
||||
38433C3216573B1A2C585D3F /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreFoundation.framework"; path = "/System/Library/Frameworks/CoreFoundation.framework"; sourceTree = "<absolute>"; };
|
||||
32E301B9385A51FC7E4911CD /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "OpenGL.framework"; path = "/System/Library/Frameworks/OpenGL.framework"; sourceTree = "<absolute>"; };
|
||||
0AA24C7E02992EAD08281BC9 /* testkeys */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = "testkeys"; path = "testkeys"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
74185D3003874A2E2DA539B7 /* SDL2main.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2main.xcodeproj"; path = "../../SDL2main/SDL2main.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
6D464B466F934BF407A37FA3 /* SDL2.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2.xcodeproj"; path = "../../SDL2/SDL2.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
4484399925A71C153FBB2457 /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
01935D695566534E454A30BB /* AudioToolbox.framework in Frameworks */,
|
||||
55784AE65EA93DA470B63FFA /* AudioUnit.framework in Frameworks */,
|
||||
2A210CA6216A44E314BA5FAE /* Cocoa.framework in Frameworks */,
|
||||
6DF45E5155386A7E7EB86A6E /* CoreAudio.framework in Frameworks */,
|
||||
0367126E1E9E340B5E9A62C6 /* IOKit.framework in Frameworks */,
|
||||
59D60D784C917537297964C8 /* Carbon.framework in Frameworks */,
|
||||
6AFE0426017553E57F8E601F /* ForceFeedback.framework in Frameworks */,
|
||||
01640C276A89726C3BB9110E /* CoreFoundation.framework in Frameworks */,
|
||||
57B2156D3A905F2665F012B0 /* OpenGL.framework in Frameworks */,
|
||||
455F748B7ED7642360CF3C6C /* libSDL2main.a in Frameworks */,
|
||||
465B117334D92A6008322145 /* libSDL2.a in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
4BA5662E7F9402A340F45D34 /* testkeys */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
232B617B66995F7C05013C5D /* test */,
|
||||
1ECE6F887C7C5615265A6118 /* Frameworks */,
|
||||
14081BF170B0480700B77696 /* Products */,
|
||||
0B6946B349496DA378865A56 /* Projects */,
|
||||
);
|
||||
name = "testkeys";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
232B617B66995F7C05013C5D /* test */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
1C720BA10F9E6CC45CFD7281 /* testkeys.c */,
|
||||
);
|
||||
name = "test";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
1ECE6F887C7C5615265A6118 /* Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
1C4723971A3D268A4E764B6F /* AudioToolbox.framework */,
|
||||
0340006028F116AE106E56F6 /* AudioUnit.framework */,
|
||||
735E611957E3050F1DCE735C /* Cocoa.framework */,
|
||||
574A58CB100E0E6B327132F4 /* CoreAudio.framework */,
|
||||
15992A844307099064094347 /* IOKit.framework */,
|
||||
40CC2B93789450B26A7D3F43 /* Carbon.framework */,
|
||||
426E56687A8557803F7A08FC /* ForceFeedback.framework */,
|
||||
38433C3216573B1A2C585D3F /* CoreFoundation.framework */,
|
||||
32E301B9385A51FC7E4911CD /* OpenGL.framework */,
|
||||
);
|
||||
name = "Frameworks";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
14081BF170B0480700B77696 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
0AA24C7E02992EAD08281BC9 /* testkeys */,
|
||||
);
|
||||
name = "Products";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
0B6946B349496DA378865A56 /* Projects */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
74185D3003874A2E2DA539B7 /* SDL2main.xcodeproj */,
|
||||
6D464B466F934BF407A37FA3 /* SDL2.xcodeproj */,
|
||||
);
|
||||
name = "Projects";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
5E403C6A13FB494E5CBB380E /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
52EA144432A502DF0D432C88 /* libSDL2main.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
44CB7BC95C894D3D086A0052 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
4E9B31C101CA22D041426DBB /* libSDL2.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
50E653D558D64C982D9D385B /* testkeys */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 6936126963AB2FBB5E641B90 /* Build configuration list for PBXNativeTarget "testkeys" */;
|
||||
buildPhases = (
|
||||
2C727D8B50EB03F641D12A29 /* Resources */,
|
||||
6F0027DC1DF36989497A6FC8 /* Sources */,
|
||||
4484399925A71C153FBB2457 /* Frameworks */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
133B078D75777AF174FA69D7 /* PBXTargetDependency */,
|
||||
790D5BB64714334F316D7C20 /* PBXTargetDependency */,
|
||||
);
|
||||
name = "testkeys";
|
||||
productInstallPath = "$(HOME)/bin";
|
||||
productName = "testkeys";
|
||||
productReference = 0AA24C7E02992EAD08281BC9 /* testkeys */;
|
||||
productType = "com.apple.product-type.tool";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
08FB7793FE84155DC02AAC07 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
buildConfigurationList = 1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testkeys" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
hasScannedForEncodings = 1;
|
||||
mainGroup = 4BA5662E7F9402A340F45D34 /* testkeys */;
|
||||
projectDirPath = "";
|
||||
projectReferences = (
|
||||
{
|
||||
ProductGroup = 5E403C6A13FB494E5CBB380E /* Products */;
|
||||
ProjectRef = 74185D3003874A2E2DA539B7 /* SDL2main.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 44CB7BC95C894D3D086A0052 /* Products */;
|
||||
ProjectRef = 6D464B466F934BF407A37FA3 /* SDL2.xcodeproj */;
|
||||
},
|
||||
);
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
50E653D558D64C982D9D385B /* testkeys */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXReferenceProxy section */
|
||||
52EA144432A502DF0D432C88 /* libSDL2main.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2main.a";
|
||||
remoteRef = 207834E413575F6F720B4EEE /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
4E9B31C101CA22D041426DBB /* libSDL2.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2.a";
|
||||
remoteRef = 14EE4D1358324054597A7762 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
/* End PBXReferenceProxy section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
2C727D8B50EB03F641D12A29 /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
6F0027DC1DF36989497A6FC8 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
3454339E0B591D55512979F8 /* testkeys.c in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXVariantGroup section */
|
||||
/* End PBXVariantGroup section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
133B078D75777AF174FA69D7 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2main.a";
|
||||
targetProxy = 73690F737AF63949798E7526 /* PBXContainerItemProxy */;
|
||||
};
|
||||
790D5BB64714334F316D7C20 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2.a";
|
||||
targetProxy = 5A7F5D8C3305441C1A12549A /* PBXContainerItemProxy */;
|
||||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
7E0867456602403176F03B62 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testkeys";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
59C07A0A33B2723260226019 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testkeys";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
394241601B0515F918747F2E /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testkeys";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
0657724202310F802B2A5328 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testkeys";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
445132A8540E155B096148DD /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
498566954FA21E124B547AE0 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
25A2413855CC592E744D747E /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
75B36E593A0D2F56668807E7 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
6936126963AB2FBB5E641B90 /* Build configuration list for PBXNativeTarget "testkeys" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
7E0867456602403176F03B62 /* Debug Universal */,
|
||||
59C07A0A33B2723260226019 /* Debug Native */,
|
||||
394241601B0515F918747F2E /* Release Universal */,
|
||||
0657724202310F802B2A5328 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testkeys" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
445132A8540E155B096148DD /* Debug Universal */,
|
||||
498566954FA21E124B547AE0 /* Debug Native */,
|
||||
25A2413855CC592E744D747E /* Release Universal */,
|
||||
75B36E593A0D2F56668807E7 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
|
||||
};
|
||||
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
|
||||
}
|
457
premake/Xcode/Xcode3/tests/testloadso/testloadso.xcodeproj/project.pbxproj
Executable file
457
premake/Xcode/Xcode3/tests/testloadso/testloadso.xcodeproj/project.pbxproj
Executable file
|
@ -0,0 +1,457 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 45;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
709D0E441AEC092C477352FD /* testloadso.c in Sources */ = {isa = PBXBuildFile; fileRef = 5AF0642150A103830E8169CA /* testloadso.c */; };
|
||||
73C11D8C01C7424C32362C8E /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7457304B2CCA0764490908B4 /* AudioToolbox.framework */; };
|
||||
3142055859B320113C3C393C /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2B9D701C3FDF5E8E4A9103AE /* AudioUnit.framework */; };
|
||||
06DF3A445E5D5FA3696365A0 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3C1C53752943263D730B6527 /* Cocoa.framework */; };
|
||||
2DEC0C77760F5C42247441DB /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6F890B8A1465033937BC4A6C /* CoreAudio.framework */; };
|
||||
56834300463A22E5102650BD /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3D77605110D06D8D53F25BA7 /* IOKit.framework */; };
|
||||
6C9A156E69E36CFF0D305907 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 29761F220E835F5C24A15A95 /* Carbon.framework */; };
|
||||
3F45690904CA0E5C49C066B1 /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 12BA24E22E5A3EAE29C75818 /* ForceFeedback.framework */; };
|
||||
0A8A6B6C0186188B5ABF64CE /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C4F33EF2CC42B961D507BD3 /* CoreFoundation.framework */; };
|
||||
6AC403C37DD0780252EC29D0 /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 177F473D2F0E456447C36532 /* OpenGL.framework */; };
|
||||
682C610537661D2C6D2676AB /* libSDL2main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 14041494207459CC16EE0AB2 /* libSDL2main.a */; };
|
||||
38476ED3066556105D88291B /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6AA30CE873EB060A7EE52AAC /* libSDL2.a */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
65CB074A244B78F80D327D0D /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 6182257A166140C765542595 /* SDL2main.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 58DC62993160374E09FF7AD6;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
1C8A683E431808AD15DE38E2 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 6182257A166140C765542595 /* SDL2main.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 0E7126A94A11494963D3548B;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
2E6308FF2F280D5D6F0C1D92 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 784D0BF318A6643969815119 /* SDL2.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 07D004B11E733F1F0EA93105;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
68141F3C3D932EB24CD42CF2 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 784D0BF318A6643969815119 /* SDL2.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 58C10ED14175754444033E0E;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
5AF0642150A103830E8169CA /* testloadso.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testloadso.c"; path = "../../../../../test/testloadso.c"; sourceTree = "<group>"; };
|
||||
7457304B2CCA0764490908B4 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioToolbox.framework"; path = "/System/Library/Frameworks/AudioToolbox.framework"; sourceTree = "<absolute>"; };
|
||||
2B9D701C3FDF5E8E4A9103AE /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioUnit.framework"; path = "/System/Library/Frameworks/AudioUnit.framework"; sourceTree = "<absolute>"; };
|
||||
3C1C53752943263D730B6527 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Cocoa.framework"; path = "/System/Library/Frameworks/Cocoa.framework"; sourceTree = "<absolute>"; };
|
||||
6F890B8A1465033937BC4A6C /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreAudio.framework"; path = "/System/Library/Frameworks/CoreAudio.framework"; sourceTree = "<absolute>"; };
|
||||
3D77605110D06D8D53F25BA7 /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "IOKit.framework"; path = "/System/Library/Frameworks/IOKit.framework"; sourceTree = "<absolute>"; };
|
||||
29761F220E835F5C24A15A95 /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Carbon.framework"; path = "/System/Library/Frameworks/Carbon.framework"; sourceTree = "<absolute>"; };
|
||||
12BA24E22E5A3EAE29C75818 /* ForceFeedback.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "ForceFeedback.framework"; path = "/System/Library/Frameworks/ForceFeedback.framework"; sourceTree = "<absolute>"; };
|
||||
2C4F33EF2CC42B961D507BD3 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreFoundation.framework"; path = "/System/Library/Frameworks/CoreFoundation.framework"; sourceTree = "<absolute>"; };
|
||||
177F473D2F0E456447C36532 /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "OpenGL.framework"; path = "/System/Library/Frameworks/OpenGL.framework"; sourceTree = "<absolute>"; };
|
||||
7D043A4A56A5759D1FF324C6 /* testloadso */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = "testloadso"; path = "testloadso"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
6182257A166140C765542595 /* SDL2main.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2main.xcodeproj"; path = "../../SDL2main/SDL2main.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
784D0BF318A6643969815119 /* SDL2.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2.xcodeproj"; path = "../../SDL2/SDL2.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
5EE60750337B5D3838F840B7 /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
73C11D8C01C7424C32362C8E /* AudioToolbox.framework in Frameworks */,
|
||||
3142055859B320113C3C393C /* AudioUnit.framework in Frameworks */,
|
||||
06DF3A445E5D5FA3696365A0 /* Cocoa.framework in Frameworks */,
|
||||
2DEC0C77760F5C42247441DB /* CoreAudio.framework in Frameworks */,
|
||||
56834300463A22E5102650BD /* IOKit.framework in Frameworks */,
|
||||
6C9A156E69E36CFF0D305907 /* Carbon.framework in Frameworks */,
|
||||
3F45690904CA0E5C49C066B1 /* ForceFeedback.framework in Frameworks */,
|
||||
0A8A6B6C0186188B5ABF64CE /* CoreFoundation.framework in Frameworks */,
|
||||
6AC403C37DD0780252EC29D0 /* OpenGL.framework in Frameworks */,
|
||||
682C610537661D2C6D2676AB /* libSDL2main.a in Frameworks */,
|
||||
38476ED3066556105D88291B /* libSDL2.a in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
4AA746DB77735CF43A690503 /* testloadso */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
395647D86D6A5CEC48037146 /* test */,
|
||||
6E35652053A10CE811924869 /* Frameworks */,
|
||||
1CD103C177E4277846715785 /* Products */,
|
||||
1E563C39637923AB67B821CA /* Projects */,
|
||||
);
|
||||
name = "testloadso";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
395647D86D6A5CEC48037146 /* test */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
5AF0642150A103830E8169CA /* testloadso.c */,
|
||||
);
|
||||
name = "test";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
6E35652053A10CE811924869 /* Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
7457304B2CCA0764490908B4 /* AudioToolbox.framework */,
|
||||
2B9D701C3FDF5E8E4A9103AE /* AudioUnit.framework */,
|
||||
3C1C53752943263D730B6527 /* Cocoa.framework */,
|
||||
6F890B8A1465033937BC4A6C /* CoreAudio.framework */,
|
||||
3D77605110D06D8D53F25BA7 /* IOKit.framework */,
|
||||
29761F220E835F5C24A15A95 /* Carbon.framework */,
|
||||
12BA24E22E5A3EAE29C75818 /* ForceFeedback.framework */,
|
||||
2C4F33EF2CC42B961D507BD3 /* CoreFoundation.framework */,
|
||||
177F473D2F0E456447C36532 /* OpenGL.framework */,
|
||||
);
|
||||
name = "Frameworks";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
1CD103C177E4277846715785 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
7D043A4A56A5759D1FF324C6 /* testloadso */,
|
||||
);
|
||||
name = "Products";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
1E563C39637923AB67B821CA /* Projects */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
6182257A166140C765542595 /* SDL2main.xcodeproj */,
|
||||
784D0BF318A6643969815119 /* SDL2.xcodeproj */,
|
||||
);
|
||||
name = "Projects";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
6C270BD976786F722CD55840 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
14041494207459CC16EE0AB2 /* libSDL2main.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
78856B7960315241568B618D /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
6AA30CE873EB060A7EE52AAC /* libSDL2.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
51C964DE5742612E28943988 /* testloadso */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 2D1B658C68B501BE702C6004 /* Build configuration list for PBXNativeTarget "testloadso" */;
|
||||
buildPhases = (
|
||||
3D166FAA3D593FCF666648E4 /* Resources */,
|
||||
7EFF2A46771F2D7B2788534A /* Sources */,
|
||||
5EE60750337B5D3838F840B7 /* Frameworks */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
0686078E0DFF076716A8202B /* PBXTargetDependency */,
|
||||
67221F693EBD6A9836101193 /* PBXTargetDependency */,
|
||||
);
|
||||
name = "testloadso";
|
||||
productInstallPath = "$(HOME)/bin";
|
||||
productName = "testloadso";
|
||||
productReference = 7D043A4A56A5759D1FF324C6 /* testloadso */;
|
||||
productType = "com.apple.product-type.tool";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
08FB7793FE84155DC02AAC07 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
buildConfigurationList = 1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testloadso" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
hasScannedForEncodings = 1;
|
||||
mainGroup = 4AA746DB77735CF43A690503 /* testloadso */;
|
||||
projectDirPath = "";
|
||||
projectReferences = (
|
||||
{
|
||||
ProductGroup = 6C270BD976786F722CD55840 /* Products */;
|
||||
ProjectRef = 6182257A166140C765542595 /* SDL2main.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 78856B7960315241568B618D /* Products */;
|
||||
ProjectRef = 784D0BF318A6643969815119 /* SDL2.xcodeproj */;
|
||||
},
|
||||
);
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
51C964DE5742612E28943988 /* testloadso */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXReferenceProxy section */
|
||||
14041494207459CC16EE0AB2 /* libSDL2main.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2main.a";
|
||||
remoteRef = 65CB074A244B78F80D327D0D /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
6AA30CE873EB060A7EE52AAC /* libSDL2.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2.a";
|
||||
remoteRef = 2E6308FF2F280D5D6F0C1D92 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
/* End PBXReferenceProxy section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
3D166FAA3D593FCF666648E4 /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
7EFF2A46771F2D7B2788534A /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
709D0E441AEC092C477352FD /* testloadso.c in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXVariantGroup section */
|
||||
/* End PBXVariantGroup section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
0686078E0DFF076716A8202B /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2main.a";
|
||||
targetProxy = 1C8A683E431808AD15DE38E2 /* PBXContainerItemProxy */;
|
||||
};
|
||||
67221F693EBD6A9836101193 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2.a";
|
||||
targetProxy = 68141F3C3D932EB24CD42CF2 /* PBXContainerItemProxy */;
|
||||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
07700442397405A11F8D6941 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testloadso";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
7B4C6EB21CE060FB1B645642 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testloadso";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
56C07D2D38CE66232284445F /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testloadso";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
081A65A14BB6343F36B62114 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testloadso";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
68AB6E2428D3642001903429 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
0B70017A7AD16D2B5B513F9E /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
3EBA440E761E43E725625504 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
3D71722D0FA113E559D546C5 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
2D1B658C68B501BE702C6004 /* Build configuration list for PBXNativeTarget "testloadso" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
07700442397405A11F8D6941 /* Debug Universal */,
|
||||
7B4C6EB21CE060FB1B645642 /* Debug Native */,
|
||||
56C07D2D38CE66232284445F /* Release Universal */,
|
||||
081A65A14BB6343F36B62114 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testloadso" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
68AB6E2428D3642001903429 /* Debug Universal */,
|
||||
0B70017A7AD16D2B5B513F9E /* Debug Native */,
|
||||
3EBA440E761E43E725625504 /* Release Universal */,
|
||||
3D71722D0FA113E559D546C5 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
|
||||
};
|
||||
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
|
||||
}
|
457
premake/Xcode/Xcode3/tests/testlock/testlock.xcodeproj/project.pbxproj
Executable file
457
premake/Xcode/Xcode3/tests/testlock/testlock.xcodeproj/project.pbxproj
Executable file
|
@ -0,0 +1,457 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 45;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
36AF3C1A55A560982B347916 /* testlock.c in Sources */ = {isa = PBXBuildFile; fileRef = 76075B77190A1EB068755D2D /* testlock.c */; };
|
||||
22E4478C58A82B713F016FCB /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 447C343A6839289771533949 /* AudioToolbox.framework */; };
|
||||
182B469713534F8529BC138F /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0ED5692D2C2A199B15A723FE /* AudioUnit.framework */; };
|
||||
4B47295C58B42FF477E8506E /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4A1E059F372304422BC1110C /* Cocoa.framework */; };
|
||||
094D3F3C39A65D962EFC5BF6 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7A2F4613182C29CB78C57988 /* CoreAudio.framework */; };
|
||||
476744EB2434064930045AE5 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 166E18C26AA52A0A21F8428F /* IOKit.framework */; };
|
||||
000571817CF54464025C216A /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7E11450E34276E6D502F5E83 /* Carbon.framework */; };
|
||||
62431D6B7EFD372B7CE46574 /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 445340194DE46B3F2C09410F /* ForceFeedback.framework */; };
|
||||
2E542CC95DE23789289618EE /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3EE55097724D44B03E871B38 /* CoreFoundation.framework */; };
|
||||
6CE6002242A10F94731E64BD /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 46CD545922BB27E330BE233C /* OpenGL.framework */; };
|
||||
24E47786013F5E9B3F37681B /* libSDL2main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 22FC0D1B23AE2964781D7549 /* libSDL2main.a */; };
|
||||
0EB058742CA47139554E04CF /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 49ED07813E65088D227F6AAB /* libSDL2.a */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
07BF0E1B3FC724B70F5F30FB /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 780B4D9641C7747228861D04 /* SDL2main.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 58DC62993160374E09FF7AD6;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
4D4A744248F34DC219D92D7B /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 780B4D9641C7747228861D04 /* SDL2main.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 0E7126A94A11494963D3548B;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
6F8200BA55C653F92FC8138D /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 4CBF168D320F315D62BE2B41 /* SDL2.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 07D004B11E733F1F0EA93105;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
114425F86F59447A44351049 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 4CBF168D320F315D62BE2B41 /* SDL2.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 58C10ED14175754444033E0E;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
76075B77190A1EB068755D2D /* testlock.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testlock.c"; path = "../../../../../test/testlock.c"; sourceTree = "<group>"; };
|
||||
447C343A6839289771533949 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioToolbox.framework"; path = "/System/Library/Frameworks/AudioToolbox.framework"; sourceTree = "<absolute>"; };
|
||||
0ED5692D2C2A199B15A723FE /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioUnit.framework"; path = "/System/Library/Frameworks/AudioUnit.framework"; sourceTree = "<absolute>"; };
|
||||
4A1E059F372304422BC1110C /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Cocoa.framework"; path = "/System/Library/Frameworks/Cocoa.framework"; sourceTree = "<absolute>"; };
|
||||
7A2F4613182C29CB78C57988 /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreAudio.framework"; path = "/System/Library/Frameworks/CoreAudio.framework"; sourceTree = "<absolute>"; };
|
||||
166E18C26AA52A0A21F8428F /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "IOKit.framework"; path = "/System/Library/Frameworks/IOKit.framework"; sourceTree = "<absolute>"; };
|
||||
7E11450E34276E6D502F5E83 /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Carbon.framework"; path = "/System/Library/Frameworks/Carbon.framework"; sourceTree = "<absolute>"; };
|
||||
445340194DE46B3F2C09410F /* ForceFeedback.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "ForceFeedback.framework"; path = "/System/Library/Frameworks/ForceFeedback.framework"; sourceTree = "<absolute>"; };
|
||||
3EE55097724D44B03E871B38 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreFoundation.framework"; path = "/System/Library/Frameworks/CoreFoundation.framework"; sourceTree = "<absolute>"; };
|
||||
46CD545922BB27E330BE233C /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "OpenGL.framework"; path = "/System/Library/Frameworks/OpenGL.framework"; sourceTree = "<absolute>"; };
|
||||
5F51544256334C254E020D3D /* testlock */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = "testlock"; path = "testlock"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
780B4D9641C7747228861D04 /* SDL2main.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2main.xcodeproj"; path = "../../SDL2main/SDL2main.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
4CBF168D320F315D62BE2B41 /* SDL2.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2.xcodeproj"; path = "../../SDL2/SDL2.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
78C1724731C65D0F1ED42E48 /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
22E4478C58A82B713F016FCB /* AudioToolbox.framework in Frameworks */,
|
||||
182B469713534F8529BC138F /* AudioUnit.framework in Frameworks */,
|
||||
4B47295C58B42FF477E8506E /* Cocoa.framework in Frameworks */,
|
||||
094D3F3C39A65D962EFC5BF6 /* CoreAudio.framework in Frameworks */,
|
||||
476744EB2434064930045AE5 /* IOKit.framework in Frameworks */,
|
||||
000571817CF54464025C216A /* Carbon.framework in Frameworks */,
|
||||
62431D6B7EFD372B7CE46574 /* ForceFeedback.framework in Frameworks */,
|
||||
2E542CC95DE23789289618EE /* CoreFoundation.framework in Frameworks */,
|
||||
6CE6002242A10F94731E64BD /* OpenGL.framework in Frameworks */,
|
||||
24E47786013F5E9B3F37681B /* libSDL2main.a in Frameworks */,
|
||||
0EB058742CA47139554E04CF /* libSDL2.a in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
5E35195524CF3A97390D3A81 /* testlock */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
0884482C57CC2F5A50A4647F /* test */,
|
||||
4F2934251BA43CD222944E53 /* Frameworks */,
|
||||
51AF5DF8673976F42AA95D51 /* Products */,
|
||||
7F344EEE1C2210DF289249A7 /* Projects */,
|
||||
);
|
||||
name = "testlock";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
0884482C57CC2F5A50A4647F /* test */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
76075B77190A1EB068755D2D /* testlock.c */,
|
||||
);
|
||||
name = "test";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
4F2934251BA43CD222944E53 /* Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
447C343A6839289771533949 /* AudioToolbox.framework */,
|
||||
0ED5692D2C2A199B15A723FE /* AudioUnit.framework */,
|
||||
4A1E059F372304422BC1110C /* Cocoa.framework */,
|
||||
7A2F4613182C29CB78C57988 /* CoreAudio.framework */,
|
||||
166E18C26AA52A0A21F8428F /* IOKit.framework */,
|
||||
7E11450E34276E6D502F5E83 /* Carbon.framework */,
|
||||
445340194DE46B3F2C09410F /* ForceFeedback.framework */,
|
||||
3EE55097724D44B03E871B38 /* CoreFoundation.framework */,
|
||||
46CD545922BB27E330BE233C /* OpenGL.framework */,
|
||||
);
|
||||
name = "Frameworks";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
51AF5DF8673976F42AA95D51 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
5F51544256334C254E020D3D /* testlock */,
|
||||
);
|
||||
name = "Products";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
7F344EEE1C2210DF289249A7 /* Projects */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
780B4D9641C7747228861D04 /* SDL2main.xcodeproj */,
|
||||
4CBF168D320F315D62BE2B41 /* SDL2.xcodeproj */,
|
||||
);
|
||||
name = "Projects";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
08F13E9D60CE31F302A80029 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
22FC0D1B23AE2964781D7549 /* libSDL2main.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
50AD31CC68580A1C719E61C3 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
49ED07813E65088D227F6AAB /* libSDL2.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
4EA54D07134E169D1E0F28DC /* testlock */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 51AE32DA35C3568F040C36AC /* Build configuration list for PBXNativeTarget "testlock" */;
|
||||
buildPhases = (
|
||||
7EC5687F70F11B74113F52B0 /* Resources */,
|
||||
20EC6DC743DF75E202987A86 /* Sources */,
|
||||
78C1724731C65D0F1ED42E48 /* Frameworks */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
7E443D254D21665717ED4A4C /* PBXTargetDependency */,
|
||||
631F15A070EF04CA7DD12E39 /* PBXTargetDependency */,
|
||||
);
|
||||
name = "testlock";
|
||||
productInstallPath = "$(HOME)/bin";
|
||||
productName = "testlock";
|
||||
productReference = 5F51544256334C254E020D3D /* testlock */;
|
||||
productType = "com.apple.product-type.tool";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
08FB7793FE84155DC02AAC07 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
buildConfigurationList = 1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testlock" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
hasScannedForEncodings = 1;
|
||||
mainGroup = 5E35195524CF3A97390D3A81 /* testlock */;
|
||||
projectDirPath = "";
|
||||
projectReferences = (
|
||||
{
|
||||
ProductGroup = 08F13E9D60CE31F302A80029 /* Products */;
|
||||
ProjectRef = 780B4D9641C7747228861D04 /* SDL2main.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 50AD31CC68580A1C719E61C3 /* Products */;
|
||||
ProjectRef = 4CBF168D320F315D62BE2B41 /* SDL2.xcodeproj */;
|
||||
},
|
||||
);
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
4EA54D07134E169D1E0F28DC /* testlock */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXReferenceProxy section */
|
||||
22FC0D1B23AE2964781D7549 /* libSDL2main.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2main.a";
|
||||
remoteRef = 07BF0E1B3FC724B70F5F30FB /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
49ED07813E65088D227F6AAB /* libSDL2.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2.a";
|
||||
remoteRef = 6F8200BA55C653F92FC8138D /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
/* End PBXReferenceProxy section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
7EC5687F70F11B74113F52B0 /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
20EC6DC743DF75E202987A86 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
36AF3C1A55A560982B347916 /* testlock.c in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXVariantGroup section */
|
||||
/* End PBXVariantGroup section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
7E443D254D21665717ED4A4C /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2main.a";
|
||||
targetProxy = 4D4A744248F34DC219D92D7B /* PBXContainerItemProxy */;
|
||||
};
|
||||
631F15A070EF04CA7DD12E39 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2.a";
|
||||
targetProxy = 114425F86F59447A44351049 /* PBXContainerItemProxy */;
|
||||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
516D536738AE368857D02889 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testlock";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
2BAC510956A527B830053308 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testlock";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
70165F1F1034683327A42087 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testlock";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
57383D8C507F631251D71FBD /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testlock";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
6ECB09A631FC2F247D5F2723 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
78A61A7D2E8265180BFA68AD /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
20EC14C85871739552AB178F /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
5E9A713B7EDD7EFB51D707AD /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
51AE32DA35C3568F040C36AC /* Build configuration list for PBXNativeTarget "testlock" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
516D536738AE368857D02889 /* Debug Universal */,
|
||||
2BAC510956A527B830053308 /* Debug Native */,
|
||||
70165F1F1034683327A42087 /* Release Universal */,
|
||||
57383D8C507F631251D71FBD /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testlock" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
6ECB09A631FC2F247D5F2723 /* Debug Universal */,
|
||||
78A61A7D2E8265180BFA68AD /* Debug Native */,
|
||||
20EC14C85871739552AB178F /* Release Universal */,
|
||||
5E9A713B7EDD7EFB51D707AD /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
|
||||
};
|
||||
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
|
||||
}
|
457
premake/Xcode/Xcode3/tests/testmessage/testmessage.xcodeproj/project.pbxproj
Executable file
457
premake/Xcode/Xcode3/tests/testmessage/testmessage.xcodeproj/project.pbxproj
Executable file
|
@ -0,0 +1,457 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 45;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
4C15281849B124226F1561EE /* testmessage.c in Sources */ = {isa = PBXBuildFile; fileRef = 003C0FC70ACD46B74E3E549F /* testmessage.c */; };
|
||||
2C83524D5E1F5B2D2284306E /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 44F608F876FE1EF43BD6645F /* AudioToolbox.framework */; };
|
||||
78500A063B6717677B635CB2 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2E537B4E79AC2A6B106F24E2 /* AudioUnit.framework */; };
|
||||
356239D233647095789C4AB5 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2DA965547C174C8E3D12061E /* Cocoa.framework */; };
|
||||
37737999652F0C067F973403 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 67064B3C571C726A4D8179C0 /* CoreAudio.framework */; };
|
||||
12D101C8017F4AE73B935F19 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3A7439B734487F783F813598 /* IOKit.framework */; };
|
||||
53B04D0F43E23E4E105E1168 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 03D0610D4C3538960F9735DF /* Carbon.framework */; };
|
||||
515E2081040C537B3EDA0063 /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 641A7C2E3AAF5AA527BC6604 /* ForceFeedback.framework */; };
|
||||
4792740F2DC1192D0CAC1E27 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 69AC3C0E43363B0158725A40 /* CoreFoundation.framework */; };
|
||||
6A67175E3A0F49BE5C334149 /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 394B263C4E116E57355B1199 /* OpenGL.framework */; };
|
||||
089779561D582D30532670F3 /* libSDL2main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 36D503B50C1D54E739233010 /* libSDL2main.a */; };
|
||||
02AB49AD3B8618113CF067A9 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2D9C6AC96FE616FF78221C04 /* libSDL2.a */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
3A8370A01DEF59E21ABE6EF5 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 4BD530093DB426A12BFF03A4 /* SDL2main.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 58DC62993160374E09FF7AD6;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
3B19724458CB04B3328C0F3A /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 4BD530093DB426A12BFF03A4 /* SDL2main.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 0E7126A94A11494963D3548B;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
3777720073427EAC71172F6D /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 6F3C739637140AE21FA54330 /* SDL2.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 07D004B11E733F1F0EA93105;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
49CB51255A112A94792A4C02 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 6F3C739637140AE21FA54330 /* SDL2.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 58C10ED14175754444033E0E;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
003C0FC70ACD46B74E3E549F /* testmessage.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testmessage.c"; path = "../../../../../test/testmessage.c"; sourceTree = "<group>"; };
|
||||
44F608F876FE1EF43BD6645F /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioToolbox.framework"; path = "/System/Library/Frameworks/AudioToolbox.framework"; sourceTree = "<absolute>"; };
|
||||
2E537B4E79AC2A6B106F24E2 /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioUnit.framework"; path = "/System/Library/Frameworks/AudioUnit.framework"; sourceTree = "<absolute>"; };
|
||||
2DA965547C174C8E3D12061E /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Cocoa.framework"; path = "/System/Library/Frameworks/Cocoa.framework"; sourceTree = "<absolute>"; };
|
||||
67064B3C571C726A4D8179C0 /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreAudio.framework"; path = "/System/Library/Frameworks/CoreAudio.framework"; sourceTree = "<absolute>"; };
|
||||
3A7439B734487F783F813598 /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "IOKit.framework"; path = "/System/Library/Frameworks/IOKit.framework"; sourceTree = "<absolute>"; };
|
||||
03D0610D4C3538960F9735DF /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Carbon.framework"; path = "/System/Library/Frameworks/Carbon.framework"; sourceTree = "<absolute>"; };
|
||||
641A7C2E3AAF5AA527BC6604 /* ForceFeedback.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "ForceFeedback.framework"; path = "/System/Library/Frameworks/ForceFeedback.framework"; sourceTree = "<absolute>"; };
|
||||
69AC3C0E43363B0158725A40 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreFoundation.framework"; path = "/System/Library/Frameworks/CoreFoundation.framework"; sourceTree = "<absolute>"; };
|
||||
394B263C4E116E57355B1199 /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "OpenGL.framework"; path = "/System/Library/Frameworks/OpenGL.framework"; sourceTree = "<absolute>"; };
|
||||
051758F7528F573051872F69 /* testmessage */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = "testmessage"; path = "testmessage"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
4BD530093DB426A12BFF03A4 /* SDL2main.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2main.xcodeproj"; path = "../../SDL2main/SDL2main.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
6F3C739637140AE21FA54330 /* SDL2.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2.xcodeproj"; path = "../../SDL2/SDL2.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
2D4931A3757F6C6C28807597 /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
2C83524D5E1F5B2D2284306E /* AudioToolbox.framework in Frameworks */,
|
||||
78500A063B6717677B635CB2 /* AudioUnit.framework in Frameworks */,
|
||||
356239D233647095789C4AB5 /* Cocoa.framework in Frameworks */,
|
||||
37737999652F0C067F973403 /* CoreAudio.framework in Frameworks */,
|
||||
12D101C8017F4AE73B935F19 /* IOKit.framework in Frameworks */,
|
||||
53B04D0F43E23E4E105E1168 /* Carbon.framework in Frameworks */,
|
||||
515E2081040C537B3EDA0063 /* ForceFeedback.framework in Frameworks */,
|
||||
4792740F2DC1192D0CAC1E27 /* CoreFoundation.framework in Frameworks */,
|
||||
6A67175E3A0F49BE5C334149 /* OpenGL.framework in Frameworks */,
|
||||
089779561D582D30532670F3 /* libSDL2main.a in Frameworks */,
|
||||
02AB49AD3B8618113CF067A9 /* libSDL2.a in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
6F9F406265F621D4244C08DC /* testmessage */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
57F11275651F0CF06FD72B13 /* test */,
|
||||
7F4D2BCB51A800DE70F76CC6 /* Frameworks */,
|
||||
3D9671722AF1479B1257324C /* Products */,
|
||||
3C1F4B5165F437993EC45448 /* Projects */,
|
||||
);
|
||||
name = "testmessage";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
57F11275651F0CF06FD72B13 /* test */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
003C0FC70ACD46B74E3E549F /* testmessage.c */,
|
||||
);
|
||||
name = "test";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
7F4D2BCB51A800DE70F76CC6 /* Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
44F608F876FE1EF43BD6645F /* AudioToolbox.framework */,
|
||||
2E537B4E79AC2A6B106F24E2 /* AudioUnit.framework */,
|
||||
2DA965547C174C8E3D12061E /* Cocoa.framework */,
|
||||
67064B3C571C726A4D8179C0 /* CoreAudio.framework */,
|
||||
3A7439B734487F783F813598 /* IOKit.framework */,
|
||||
03D0610D4C3538960F9735DF /* Carbon.framework */,
|
||||
641A7C2E3AAF5AA527BC6604 /* ForceFeedback.framework */,
|
||||
69AC3C0E43363B0158725A40 /* CoreFoundation.framework */,
|
||||
394B263C4E116E57355B1199 /* OpenGL.framework */,
|
||||
);
|
||||
name = "Frameworks";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
3D9671722AF1479B1257324C /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
051758F7528F573051872F69 /* testmessage */,
|
||||
);
|
||||
name = "Products";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
3C1F4B5165F437993EC45448 /* Projects */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
4BD530093DB426A12BFF03A4 /* SDL2main.xcodeproj */,
|
||||
6F3C739637140AE21FA54330 /* SDL2.xcodeproj */,
|
||||
);
|
||||
name = "Projects";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
23E53B4D3CE23FBE619731A4 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
36D503B50C1D54E739233010 /* libSDL2main.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
7A7C784864A918C0226E734E /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
2D9C6AC96FE616FF78221C04 /* libSDL2.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
1F073B18600C67C00E052683 /* testmessage */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 31A77C6231AA441421915382 /* Build configuration list for PBXNativeTarget "testmessage" */;
|
||||
buildPhases = (
|
||||
04E300CD4A6A76AB139146A6 /* Resources */,
|
||||
627D1EAA5FCE59F0319B6633 /* Sources */,
|
||||
2D4931A3757F6C6C28807597 /* Frameworks */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
4211010322DE412B210A430C /* PBXTargetDependency */,
|
||||
50B8172F41907753767378DC /* PBXTargetDependency */,
|
||||
);
|
||||
name = "testmessage";
|
||||
productInstallPath = "$(HOME)/bin";
|
||||
productName = "testmessage";
|
||||
productReference = 051758F7528F573051872F69 /* testmessage */;
|
||||
productType = "com.apple.product-type.tool";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
08FB7793FE84155DC02AAC07 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
buildConfigurationList = 1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testmessage" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
hasScannedForEncodings = 1;
|
||||
mainGroup = 6F9F406265F621D4244C08DC /* testmessage */;
|
||||
projectDirPath = "";
|
||||
projectReferences = (
|
||||
{
|
||||
ProductGroup = 23E53B4D3CE23FBE619731A4 /* Products */;
|
||||
ProjectRef = 4BD530093DB426A12BFF03A4 /* SDL2main.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 7A7C784864A918C0226E734E /* Products */;
|
||||
ProjectRef = 6F3C739637140AE21FA54330 /* SDL2.xcodeproj */;
|
||||
},
|
||||
);
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
1F073B18600C67C00E052683 /* testmessage */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXReferenceProxy section */
|
||||
36D503B50C1D54E739233010 /* libSDL2main.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2main.a";
|
||||
remoteRef = 3A8370A01DEF59E21ABE6EF5 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
2D9C6AC96FE616FF78221C04 /* libSDL2.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2.a";
|
||||
remoteRef = 3777720073427EAC71172F6D /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
/* End PBXReferenceProxy section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
04E300CD4A6A76AB139146A6 /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
627D1EAA5FCE59F0319B6633 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
4C15281849B124226F1561EE /* testmessage.c in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXVariantGroup section */
|
||||
/* End PBXVariantGroup section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
4211010322DE412B210A430C /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2main.a";
|
||||
targetProxy = 3B19724458CB04B3328C0F3A /* PBXContainerItemProxy */;
|
||||
};
|
||||
50B8172F41907753767378DC /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2.a";
|
||||
targetProxy = 49CB51255A112A94792A4C02 /* PBXContainerItemProxy */;
|
||||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
19836F1F09FE0A3465864960 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testmessage";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
45B66F3261D1661F2BAE2E17 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testmessage";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
08FF4C2A74D0166F73BE4F85 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testmessage";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
3BA1761B738F3A8F116B3141 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testmessage";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
5AD835E2294F1F816A747010 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
69EA1C660146464833C70526 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
368E5A3C4929274A28C93EF6 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
3B2B0EF31AE217111D6B6D84 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
31A77C6231AA441421915382 /* Build configuration list for PBXNativeTarget "testmessage" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
19836F1F09FE0A3465864960 /* Debug Universal */,
|
||||
45B66F3261D1661F2BAE2E17 /* Debug Native */,
|
||||
08FF4C2A74D0166F73BE4F85 /* Release Universal */,
|
||||
3BA1761B738F3A8F116B3141 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testmessage" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
5AD835E2294F1F816A747010 /* Debug Universal */,
|
||||
69EA1C660146464833C70526 /* Debug Native */,
|
||||
368E5A3C4929274A28C93EF6 /* Release Universal */,
|
||||
3B2B0EF31AE217111D6B6D84 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
|
||||
};
|
||||
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
|
||||
}
|
|
@ -0,0 +1,474 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 45;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
174815721F7146F115C335E0 /* testmultiaudio.c in Sources */ = {isa = PBXBuildFile; fileRef = 53C5423271F91FF954C36118 /* testmultiaudio.c */; };
|
||||
1861168928E56DFD08533DC6 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 15CB4753539D042D37B623F2 /* AudioToolbox.framework */; };
|
||||
530D20A412A064804AF141F2 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1C46380B7B9D25571D312E68 /* AudioUnit.framework */; };
|
||||
1D4E7FBD7210232C32B074C7 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0A575BEE6A5C66D4150237F8 /* Cocoa.framework */; };
|
||||
01A64D943EC872D24DF656A1 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 721A418B1FB41307619F2528 /* CoreAudio.framework */; };
|
||||
162643C813370716660557DA /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0C5D63DF56BF25A63B0444EE /* IOKit.framework */; };
|
||||
338D20466DEA2A9E6C995E32 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 37AD46DE49E1039071A7202A /* Carbon.framework */; };
|
||||
6ADC14B17BF057A47EFB3048 /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4FB92763717E0DA7067843E1 /* ForceFeedback.framework */; };
|
||||
08F0559B59E42A2232C4230E /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 782647790AF8537A750A1568 /* CoreFoundation.framework */; };
|
||||
2BA23AB9537953747BF1113A /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 290C6654453C0A1C5EE476C5 /* OpenGL.framework */; };
|
||||
71B33AEF4EF9475873A012C7 /* libSDL2main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 7BC16DA8347901D000590233 /* libSDL2main.a */; };
|
||||
395D15850C633DE5129376D8 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6410585808B95289405A6302 /* libSDL2.a */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
5EF132686453137B162436C0 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 55D92D84460A6778062649E9 /* SDL2main.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 58DC62993160374E09FF7AD6;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
2151781404065B7A2E2C4E69 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 55D92D84460A6778062649E9 /* SDL2main.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 0E7126A94A11494963D3548B;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
6B113731181333027E1864B6 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 7B9118CD62B7789852C53B91 /* SDL2.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 07D004B11E733F1F0EA93105;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
77AC6F0623E87E6F29D44BC2 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 7B9118CD62B7789852C53B91 /* SDL2.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 58C10ED14175754444033E0E;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
53C5423271F91FF954C36118 /* testmultiaudio.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testmultiaudio.c"; path = "../../../../../test/testmultiaudio.c"; sourceTree = "<group>"; };
|
||||
15CB4753539D042D37B623F2 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioToolbox.framework"; path = "/System/Library/Frameworks/AudioToolbox.framework"; sourceTree = "<absolute>"; };
|
||||
1C46380B7B9D25571D312E68 /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioUnit.framework"; path = "/System/Library/Frameworks/AudioUnit.framework"; sourceTree = "<absolute>"; };
|
||||
0A575BEE6A5C66D4150237F8 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Cocoa.framework"; path = "/System/Library/Frameworks/Cocoa.framework"; sourceTree = "<absolute>"; };
|
||||
721A418B1FB41307619F2528 /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreAudio.framework"; path = "/System/Library/Frameworks/CoreAudio.framework"; sourceTree = "<absolute>"; };
|
||||
0C5D63DF56BF25A63B0444EE /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "IOKit.framework"; path = "/System/Library/Frameworks/IOKit.framework"; sourceTree = "<absolute>"; };
|
||||
37AD46DE49E1039071A7202A /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Carbon.framework"; path = "/System/Library/Frameworks/Carbon.framework"; sourceTree = "<absolute>"; };
|
||||
4FB92763717E0DA7067843E1 /* ForceFeedback.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "ForceFeedback.framework"; path = "/System/Library/Frameworks/ForceFeedback.framework"; sourceTree = "<absolute>"; };
|
||||
782647790AF8537A750A1568 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreFoundation.framework"; path = "/System/Library/Frameworks/CoreFoundation.framework"; sourceTree = "<absolute>"; };
|
||||
290C6654453C0A1C5EE476C5 /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "OpenGL.framework"; path = "/System/Library/Frameworks/OpenGL.framework"; sourceTree = "<absolute>"; };
|
||||
258210DE0BA646D34B7E4568 /* testmultiaudio */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = "testmultiaudio"; path = "testmultiaudio"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
55D92D84460A6778062649E9 /* SDL2main.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2main.xcodeproj"; path = "../../SDL2main/SDL2main.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
7B9118CD62B7789852C53B91 /* SDL2.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2.xcodeproj"; path = "../../SDL2/SDL2.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
0168143D58A3681C2D88598C /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
1861168928E56DFD08533DC6 /* AudioToolbox.framework in Frameworks */,
|
||||
530D20A412A064804AF141F2 /* AudioUnit.framework in Frameworks */,
|
||||
1D4E7FBD7210232C32B074C7 /* Cocoa.framework in Frameworks */,
|
||||
01A64D943EC872D24DF656A1 /* CoreAudio.framework in Frameworks */,
|
||||
162643C813370716660557DA /* IOKit.framework in Frameworks */,
|
||||
338D20466DEA2A9E6C995E32 /* Carbon.framework in Frameworks */,
|
||||
6ADC14B17BF057A47EFB3048 /* ForceFeedback.framework in Frameworks */,
|
||||
08F0559B59E42A2232C4230E /* CoreFoundation.framework in Frameworks */,
|
||||
2BA23AB9537953747BF1113A /* OpenGL.framework in Frameworks */,
|
||||
71B33AEF4EF9475873A012C7 /* libSDL2main.a in Frameworks */,
|
||||
395D15850C633DE5129376D8 /* libSDL2.a in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
1DF60B03026011DD72195588 /* testmultiaudio */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
0DA025A302E9323622BB2CC1 /* test */,
|
||||
2D4746BB2B19338A51054414 /* Frameworks */,
|
||||
060A0A8A08640AD826196F76 /* Products */,
|
||||
35403DDB0B1E114F65A77089 /* Projects */,
|
||||
);
|
||||
name = "testmultiaudio";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
0DA025A302E9323622BB2CC1 /* test */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
53C5423271F91FF954C36118 /* testmultiaudio.c */,
|
||||
);
|
||||
name = "test";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
2D4746BB2B19338A51054414 /* Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
15CB4753539D042D37B623F2 /* AudioToolbox.framework */,
|
||||
1C46380B7B9D25571D312E68 /* AudioUnit.framework */,
|
||||
0A575BEE6A5C66D4150237F8 /* Cocoa.framework */,
|
||||
721A418B1FB41307619F2528 /* CoreAudio.framework */,
|
||||
0C5D63DF56BF25A63B0444EE /* IOKit.framework */,
|
||||
37AD46DE49E1039071A7202A /* Carbon.framework */,
|
||||
4FB92763717E0DA7067843E1 /* ForceFeedback.framework */,
|
||||
782647790AF8537A750A1568 /* CoreFoundation.framework */,
|
||||
290C6654453C0A1C5EE476C5 /* OpenGL.framework */,
|
||||
);
|
||||
name = "Frameworks";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
060A0A8A08640AD826196F76 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
258210DE0BA646D34B7E4568 /* testmultiaudio */,
|
||||
);
|
||||
name = "Products";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
35403DDB0B1E114F65A77089 /* Projects */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
55D92D84460A6778062649E9 /* SDL2main.xcodeproj */,
|
||||
7B9118CD62B7789852C53B91 /* SDL2.xcodeproj */,
|
||||
);
|
||||
name = "Projects";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
696627B2256F1F070966363E /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
7BC16DA8347901D000590233 /* libSDL2main.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
6603008153DE29AE6FA406B5 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
6410585808B95289405A6302 /* libSDL2.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
3243575279A557EB226C63CE /* testmultiaudio */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 66CD55C26ECC1AEF67EE69D8 /* Build configuration list for PBXNativeTarget "testmultiaudio" */;
|
||||
buildPhases = (
|
||||
08FC11C805A3259D10A01B08 /* Resources */,
|
||||
50DB7AE237756D106B0114E9 /* Sources */,
|
||||
0168143D58A3681C2D88598C /* Frameworks */,
|
||||
9607AE3710C85E8F00CD1376 /* Postbuild */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
004D570469386A167BA279B1 /* PBXTargetDependency */,
|
||||
6C3F42866E19479F20B367D6 /* PBXTargetDependency */,
|
||||
);
|
||||
name = "testmultiaudio";
|
||||
productInstallPath = "$(HOME)/bin";
|
||||
productName = "testmultiaudio";
|
||||
productReference = 258210DE0BA646D34B7E4568 /* testmultiaudio */;
|
||||
productType = "com.apple.product-type.tool";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
08FB7793FE84155DC02AAC07 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
buildConfigurationList = 1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testmultiaudio" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
hasScannedForEncodings = 1;
|
||||
mainGroup = 1DF60B03026011DD72195588 /* testmultiaudio */;
|
||||
projectDirPath = "";
|
||||
projectReferences = (
|
||||
{
|
||||
ProductGroup = 696627B2256F1F070966363E /* Products */;
|
||||
ProjectRef = 55D92D84460A6778062649E9 /* SDL2main.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 6603008153DE29AE6FA406B5 /* Products */;
|
||||
ProjectRef = 7B9118CD62B7789852C53B91 /* SDL2.xcodeproj */;
|
||||
},
|
||||
);
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
3243575279A557EB226C63CE /* testmultiaudio */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXReferenceProxy section */
|
||||
7BC16DA8347901D000590233 /* libSDL2main.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2main.a";
|
||||
remoteRef = 5EF132686453137B162436C0 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
6410585808B95289405A6302 /* libSDL2.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2.a";
|
||||
remoteRef = 6B113731181333027E1864B6 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
/* End PBXReferenceProxy section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
08FC11C805A3259D10A01B08 /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXShellScriptBuildPhase section */
|
||||
9607AE3710C85E8F00CD1376 /* Postbuild */ = {
|
||||
isa = PBXShellScriptBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
inputPaths = (
|
||||
);
|
||||
name = Postbuild;
|
||||
outputPaths = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
shellPath = /bin/sh;
|
||||
shellScript = "if [ \"${CONFIGURATION}\" = \"Debug Universal\" ]; then\nif [ ! -d \"./Build/Debug\" ]; then mkdir -p \"./Build/Debug\"; fi\ncp \"./../../../../../test/sample.wav\" \"./Build/Debug/sample.wav\"\nfi\nif [ \"${CONFIGURATION}\" = \"Debug Native\" ]; then\nif [ ! -d \"./Build/Debug\" ]; then mkdir -p \"./Build/Debug\"; fi\ncp \"./../../../../../test/sample.wav\" \"./Build/Debug/sample.wav\"\nfi\nif [ \"${CONFIGURATION}\" = \"Release Universal\" ]; then\nif [ ! -d \"./Build/Release\" ]; then mkdir -p \"./Build/Release\"; fi\ncp \"./../../../../../test/sample.wav\" \"./Build/Release/sample.wav\"\nfi\nif [ \"${CONFIGURATION}\" = \"Release Native\" ]; then\nif [ ! -d \"./Build/Release\" ]; then mkdir -p \"./Build/Release\"; fi\ncp \"./../../../../../test/sample.wav\" \"./Build/Release/sample.wav\"\nfi";
|
||||
};
|
||||
/* End PBXShellScriptBuildPhase section */
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
50DB7AE237756D106B0114E9 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
174815721F7146F115C335E0 /* testmultiaudio.c in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXVariantGroup section */
|
||||
/* End PBXVariantGroup section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
004D570469386A167BA279B1 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2main.a";
|
||||
targetProxy = 2151781404065B7A2E2C4E69 /* PBXContainerItemProxy */;
|
||||
};
|
||||
6C3F42866E19479F20B367D6 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2.a";
|
||||
targetProxy = 77AC6F0623E87E6F29D44BC2 /* PBXContainerItemProxy */;
|
||||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
269674957F6148FD692F19BA /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testmultiaudio";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
303025B74A4268AC0BEB23CD /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testmultiaudio";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
6BF27AEC22F65EDA3A6D4EC9 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testmultiaudio";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
48C64B556EB35B806BD770BB /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testmultiaudio";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
2D9E7BDC31993453730A2FD2 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
1341319674F24336220D3D5A /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
0000069D34CC40CF010B2A26 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
17EB04401F5E7A130A5376D0 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
66CD55C26ECC1AEF67EE69D8 /* Build configuration list for PBXNativeTarget "testmultiaudio" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
269674957F6148FD692F19BA /* Debug Universal */,
|
||||
303025B74A4268AC0BEB23CD /* Debug Native */,
|
||||
6BF27AEC22F65EDA3A6D4EC9 /* Release Universal */,
|
||||
48C64B556EB35B806BD770BB /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testmultiaudio" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
2D9E7BDC31993453730A2FD2 /* Debug Universal */,
|
||||
1341319674F24336220D3D5A /* Debug Native */,
|
||||
0000069D34CC40CF010B2A26 /* Release Universal */,
|
||||
17EB04401F5E7A130A5376D0 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
|
||||
};
|
||||
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
|
||||
}
|
480
premake/Xcode/Xcode3/tests/testnative/testnative.xcodeproj/project.pbxproj
Executable file
480
premake/Xcode/Xcode3/tests/testnative/testnative.xcodeproj/project.pbxproj
Executable file
|
@ -0,0 +1,480 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 45;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
5EC212E30AED603F72156F79 /* testnative.c in Sources */ = {isa = PBXBuildFile; fileRef = 09311D5367FC66771E7318D5 /* testnative.c */; };
|
||||
54C15326088436A9230D5110 /* testnativecocoa.m in Sources */ = {isa = PBXBuildFile; fileRef = 58C035895DB74E9E16235E30 /* testnativecocoa.m */; };
|
||||
53004AB405F2758E5F973390 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 398B5D33413B2EA22832188D /* AudioToolbox.framework */; };
|
||||
5D2E2E7061411EC95AB73306 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 65EF5B09498E4845494156E5 /* AudioUnit.framework */; };
|
||||
578965B01D175CCE5E6A3667 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 61ED3686206E555C44447010 /* Cocoa.framework */; };
|
||||
0E714C95788701897D85483A /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A2145ED01C1668742F17812 /* CoreAudio.framework */; };
|
||||
76DF3AB76EE102CE2CA06EA1 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 00ED617A1D6227434FE4036B /* IOKit.framework */; };
|
||||
24DA1FED051540F92B287CC8 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 146A6DCA7E40436331FB6839 /* Carbon.framework */; };
|
||||
59821B8B6F45341B150737E7 /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6E7629D50C845B0E2DF27603 /* ForceFeedback.framework */; };
|
||||
6A5672E00D543C3552A02044 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3D8D0094770E755A149D738A /* CoreFoundation.framework */; };
|
||||
4AD6442630A52E0104FE44D7 /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7061781356DF74BA7B237006 /* OpenGL.framework */; };
|
||||
685B4AD90CD939916E816111 /* libSDL2main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 40DA60C67C1300EF5B1838BA /* libSDL2main.a */; };
|
||||
7CC725510C3049A02F9D2DF7 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 7DCC0E6E045C707338B77A34 /* libSDL2.a */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
2735469863225AF730987CB3 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 7ED026D100095D0D18BD4051 /* SDL2main.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 58DC62993160374E09FF7AD6;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
01C352BF24C13C2215AB3050 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 7ED026D100095D0D18BD4051 /* SDL2main.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 0E7126A94A11494963D3548B;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
3E3252EC174805026BC969CB /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 2950670A4677313F2FF316E4 /* SDL2.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 07D004B11E733F1F0EA93105;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
170A1F2539EA4C7A6C3C69FA /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 2950670A4677313F2FF316E4 /* SDL2.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 58C10ED14175754444033E0E;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
09311D5367FC66771E7318D5 /* testnative.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testnative.c"; path = "../../../../../test/testnative.c"; sourceTree = "<group>"; };
|
||||
2933635A47D86E8509A140D4 /* testnative.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = "testnative.h"; path = "../../../../../test/testnative.h"; sourceTree = "<group>"; };
|
||||
58C035895DB74E9E16235E30 /* testnativecocoa.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; name = "testnativecocoa.m"; path = "../../../../../test/testnativecocoa.m"; sourceTree = "<group>"; };
|
||||
398B5D33413B2EA22832188D /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioToolbox.framework"; path = "/System/Library/Frameworks/AudioToolbox.framework"; sourceTree = "<absolute>"; };
|
||||
65EF5B09498E4845494156E5 /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioUnit.framework"; path = "/System/Library/Frameworks/AudioUnit.framework"; sourceTree = "<absolute>"; };
|
||||
61ED3686206E555C44447010 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Cocoa.framework"; path = "/System/Library/Frameworks/Cocoa.framework"; sourceTree = "<absolute>"; };
|
||||
5A2145ED01C1668742F17812 /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreAudio.framework"; path = "/System/Library/Frameworks/CoreAudio.framework"; sourceTree = "<absolute>"; };
|
||||
00ED617A1D6227434FE4036B /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "IOKit.framework"; path = "/System/Library/Frameworks/IOKit.framework"; sourceTree = "<absolute>"; };
|
||||
146A6DCA7E40436331FB6839 /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Carbon.framework"; path = "/System/Library/Frameworks/Carbon.framework"; sourceTree = "<absolute>"; };
|
||||
6E7629D50C845B0E2DF27603 /* ForceFeedback.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "ForceFeedback.framework"; path = "/System/Library/Frameworks/ForceFeedback.framework"; sourceTree = "<absolute>"; };
|
||||
3D8D0094770E755A149D738A /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreFoundation.framework"; path = "/System/Library/Frameworks/CoreFoundation.framework"; sourceTree = "<absolute>"; };
|
||||
7061781356DF74BA7B237006 /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "OpenGL.framework"; path = "/System/Library/Frameworks/OpenGL.framework"; sourceTree = "<absolute>"; };
|
||||
0D926DF4640E0E9F783911A8 /* testnative */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = "testnative"; path = "testnative"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
7ED026D100095D0D18BD4051 /* SDL2main.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2main.xcodeproj"; path = "../../SDL2main/SDL2main.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
2950670A4677313F2FF316E4 /* SDL2.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2.xcodeproj"; path = "../../SDL2/SDL2.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
373900501DE06E5C026B626E /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
53004AB405F2758E5F973390 /* AudioToolbox.framework in Frameworks */,
|
||||
5D2E2E7061411EC95AB73306 /* AudioUnit.framework in Frameworks */,
|
||||
578965B01D175CCE5E6A3667 /* Cocoa.framework in Frameworks */,
|
||||
0E714C95788701897D85483A /* CoreAudio.framework in Frameworks */,
|
||||
76DF3AB76EE102CE2CA06EA1 /* IOKit.framework in Frameworks */,
|
||||
24DA1FED051540F92B287CC8 /* Carbon.framework in Frameworks */,
|
||||
59821B8B6F45341B150737E7 /* ForceFeedback.framework in Frameworks */,
|
||||
6A5672E00D543C3552A02044 /* CoreFoundation.framework in Frameworks */,
|
||||
4AD6442630A52E0104FE44D7 /* OpenGL.framework in Frameworks */,
|
||||
685B4AD90CD939916E816111 /* libSDL2main.a in Frameworks */,
|
||||
7CC725510C3049A02F9D2DF7 /* libSDL2.a in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
4ADA31FF6F7A5AB540AB2A7C /* testnative */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
67E37B81581E57B94BB41EB3 /* test */,
|
||||
7BC83D9325F529F07B133ACA /* Frameworks */,
|
||||
1A9A2CC746EF074819147013 /* Products */,
|
||||
0F6539B53F4A4F2651E470AF /* Projects */,
|
||||
);
|
||||
name = "testnative";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
67E37B81581E57B94BB41EB3 /* test */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
09311D5367FC66771E7318D5 /* testnative.c */,
|
||||
2933635A47D86E8509A140D4 /* testnative.h */,
|
||||
58C035895DB74E9E16235E30 /* testnativecocoa.m */,
|
||||
);
|
||||
name = "test";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
7BC83D9325F529F07B133ACA /* Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
398B5D33413B2EA22832188D /* AudioToolbox.framework */,
|
||||
65EF5B09498E4845494156E5 /* AudioUnit.framework */,
|
||||
61ED3686206E555C44447010 /* Cocoa.framework */,
|
||||
5A2145ED01C1668742F17812 /* CoreAudio.framework */,
|
||||
00ED617A1D6227434FE4036B /* IOKit.framework */,
|
||||
146A6DCA7E40436331FB6839 /* Carbon.framework */,
|
||||
6E7629D50C845B0E2DF27603 /* ForceFeedback.framework */,
|
||||
3D8D0094770E755A149D738A /* CoreFoundation.framework */,
|
||||
7061781356DF74BA7B237006 /* OpenGL.framework */,
|
||||
);
|
||||
name = "Frameworks";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
1A9A2CC746EF074819147013 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
0D926DF4640E0E9F783911A8 /* testnative */,
|
||||
);
|
||||
name = "Products";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
0F6539B53F4A4F2651E470AF /* Projects */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
7ED026D100095D0D18BD4051 /* SDL2main.xcodeproj */,
|
||||
2950670A4677313F2FF316E4 /* SDL2.xcodeproj */,
|
||||
);
|
||||
name = "Projects";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
725A2D5E32C078CE504C3C61 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
40DA60C67C1300EF5B1838BA /* libSDL2main.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
5EE66A6330A730AB30CA3133 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
7DCC0E6E045C707338B77A34 /* libSDL2.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
42D82EF966E007C60AD159EA /* testnative */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 4EF95E4A743605676714614B /* Build configuration list for PBXNativeTarget "testnative" */;
|
||||
buildPhases = (
|
||||
200B45E75C6636E46DB91829 /* Resources */,
|
||||
68E85E5734AC2ED06161420A /* Sources */,
|
||||
373900501DE06E5C026B626E /* Frameworks */,
|
||||
9607AE3710C85E8F00CD1376 /* Postbuild */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
551212EB306B4C5701755CAB /* PBXTargetDependency */,
|
||||
20ED52B908931F992E0363EC /* PBXTargetDependency */,
|
||||
);
|
||||
name = "testnative";
|
||||
productInstallPath = "$(HOME)/bin";
|
||||
productName = "testnative";
|
||||
productReference = 0D926DF4640E0E9F783911A8 /* testnative */;
|
||||
productType = "com.apple.product-type.tool";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
08FB7793FE84155DC02AAC07 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
buildConfigurationList = 1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testnative" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
hasScannedForEncodings = 1;
|
||||
mainGroup = 4ADA31FF6F7A5AB540AB2A7C /* testnative */;
|
||||
projectDirPath = "";
|
||||
projectReferences = (
|
||||
{
|
||||
ProductGroup = 725A2D5E32C078CE504C3C61 /* Products */;
|
||||
ProjectRef = 7ED026D100095D0D18BD4051 /* SDL2main.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 5EE66A6330A730AB30CA3133 /* Products */;
|
||||
ProjectRef = 2950670A4677313F2FF316E4 /* SDL2.xcodeproj */;
|
||||
},
|
||||
);
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
42D82EF966E007C60AD159EA /* testnative */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXReferenceProxy section */
|
||||
40DA60C67C1300EF5B1838BA /* libSDL2main.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2main.a";
|
||||
remoteRef = 2735469863225AF730987CB3 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
7DCC0E6E045C707338B77A34 /* libSDL2.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2.a";
|
||||
remoteRef = 3E3252EC174805026BC969CB /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
/* End PBXReferenceProxy section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
200B45E75C6636E46DB91829 /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXShellScriptBuildPhase section */
|
||||
9607AE3710C85E8F00CD1376 /* Postbuild */ = {
|
||||
isa = PBXShellScriptBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
inputPaths = (
|
||||
);
|
||||
name = Postbuild;
|
||||
outputPaths = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
shellPath = /bin/sh;
|
||||
shellScript = "if [ \"${CONFIGURATION}\" = \"Debug Universal\" ]; then\nif [ ! -d \"./Build/Debug\" ]; then mkdir -p \"./Build/Debug\"; fi\ncp \"./../../../../../test/icon.bmp\" \"./Build/Debug/icon.bmp\"\nfi\nif [ \"${CONFIGURATION}\" = \"Debug Native\" ]; then\nif [ ! -d \"./Build/Debug\" ]; then mkdir -p \"./Build/Debug\"; fi\ncp \"./../../../../../test/icon.bmp\" \"./Build/Debug/icon.bmp\"\nfi\nif [ \"${CONFIGURATION}\" = \"Release Universal\" ]; then\nif [ ! -d \"./Build/Release\" ]; then mkdir -p \"./Build/Release\"; fi\ncp \"./../../../../../test/icon.bmp\" \"./Build/Release/icon.bmp\"\nfi\nif [ \"${CONFIGURATION}\" = \"Release Native\" ]; then\nif [ ! -d \"./Build/Release\" ]; then mkdir -p \"./Build/Release\"; fi\ncp \"./../../../../../test/icon.bmp\" \"./Build/Release/icon.bmp\"\nfi";
|
||||
};
|
||||
/* End PBXShellScriptBuildPhase section */
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
68E85E5734AC2ED06161420A /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
5EC212E30AED603F72156F79 /* testnative.c in Sources */,
|
||||
54C15326088436A9230D5110 /* testnativecocoa.m in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXVariantGroup section */
|
||||
/* End PBXVariantGroup section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
551212EB306B4C5701755CAB /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2main.a";
|
||||
targetProxy = 01C352BF24C13C2215AB3050 /* PBXContainerItemProxy */;
|
||||
};
|
||||
20ED52B908931F992E0363EC /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2.a";
|
||||
targetProxy = 170A1F2539EA4C7A6C3C69FA /* PBXContainerItemProxy */;
|
||||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
5F8D5EDA7589112E1FB214A7 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testnative";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
64EB32DB64506BDC5F3F42EB /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testnative";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
395F4A027F9D310E1C6D449E /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testnative";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
23BA406F6A802F5313C16D3D /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testnative";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
702334BF761E35DC10EE09ED /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
0AF518B073C802B9001B02A9 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
1EF44D5D482E57B747E4508A /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
4C9C187221FC3B8926A8741E /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
4EF95E4A743605676714614B /* Build configuration list for PBXNativeTarget "testnative" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
5F8D5EDA7589112E1FB214A7 /* Debug Universal */,
|
||||
64EB32DB64506BDC5F3F42EB /* Debug Native */,
|
||||
395F4A027F9D310E1C6D449E /* Release Universal */,
|
||||
23BA406F6A802F5313C16D3D /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testnative" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
702334BF761E35DC10EE09ED /* Debug Universal */,
|
||||
0AF518B073C802B9001B02A9 /* Debug Native */,
|
||||
1EF44D5D482E57B747E4508A /* Release Universal */,
|
||||
4C9C187221FC3B8926A8741E /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
|
||||
};
|
||||
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
|
||||
}
|
474
premake/Xcode/Xcode3/tests/testoverlay2/testoverlay2.xcodeproj/project.pbxproj
Executable file
474
premake/Xcode/Xcode3/tests/testoverlay2/testoverlay2.xcodeproj/project.pbxproj
Executable file
|
@ -0,0 +1,474 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 45;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
49E519755DE056E56EEE7984 /* testoverlay2.c in Sources */ = {isa = PBXBuildFile; fileRef = 0D8A73571318159858096092 /* testoverlay2.c */; };
|
||||
3AF279FE14CA692708046DB4 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0378471E362972885D2A2BEA /* AudioToolbox.framework */; };
|
||||
301212F75420212E092E3175 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 03DE051C016D34B83FB85C77 /* AudioUnit.framework */; };
|
||||
08870BD6311A585A20D46880 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2F94243942F0572202694515 /* Cocoa.framework */; };
|
||||
65A87AC11CBF631B28F2402E /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4BD52FFE58E2070F14E14B19 /* CoreAudio.framework */; };
|
||||
43E104313E9F5B9A03BE4E12 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1B3C31575AA200182BE02D09 /* IOKit.framework */; };
|
||||
159042C076D351EF319E360C /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 35644D2D583D110D1543751C /* Carbon.framework */; };
|
||||
672A1AC7378321517A336148 /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 790A115D0D90768E17FB642F /* ForceFeedback.framework */; };
|
||||
21024A424BBA385B68E674EE /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6BD11EC345EF7D0A2F052B0D /* CoreFoundation.framework */; };
|
||||
069120D46A0643D372906BDA /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4E2F27481BE5130F71C969D4 /* OpenGL.framework */; };
|
||||
39E37CE74D215AD0399B0986 /* libSDL2main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 7AE62577644D2CA731DD52B6 /* libSDL2main.a */; };
|
||||
2C2B5AD223BC180527FD596D /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 367154F61CFE7413423C7547 /* libSDL2.a */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
6B4B1C6C7B66128C34A969B2 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 12EB05A3126210B44E43311F /* SDL2main.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 58DC62993160374E09FF7AD6;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
5D2B6AD811B1074B5D53106B /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 12EB05A3126210B44E43311F /* SDL2main.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 0E7126A94A11494963D3548B;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
520B0310111D0A7E6B396B34 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 3E0626DF04355843419935DA /* SDL2.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 07D004B11E733F1F0EA93105;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
28A92DF74FF77AC27A840D8C /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 3E0626DF04355843419935DA /* SDL2.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 58C10ED14175754444033E0E;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
0D8A73571318159858096092 /* testoverlay2.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testoverlay2.c"; path = "../../../../../test/testoverlay2.c"; sourceTree = "<group>"; };
|
||||
0378471E362972885D2A2BEA /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioToolbox.framework"; path = "/System/Library/Frameworks/AudioToolbox.framework"; sourceTree = "<absolute>"; };
|
||||
03DE051C016D34B83FB85C77 /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioUnit.framework"; path = "/System/Library/Frameworks/AudioUnit.framework"; sourceTree = "<absolute>"; };
|
||||
2F94243942F0572202694515 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Cocoa.framework"; path = "/System/Library/Frameworks/Cocoa.framework"; sourceTree = "<absolute>"; };
|
||||
4BD52FFE58E2070F14E14B19 /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreAudio.framework"; path = "/System/Library/Frameworks/CoreAudio.framework"; sourceTree = "<absolute>"; };
|
||||
1B3C31575AA200182BE02D09 /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "IOKit.framework"; path = "/System/Library/Frameworks/IOKit.framework"; sourceTree = "<absolute>"; };
|
||||
35644D2D583D110D1543751C /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Carbon.framework"; path = "/System/Library/Frameworks/Carbon.framework"; sourceTree = "<absolute>"; };
|
||||
790A115D0D90768E17FB642F /* ForceFeedback.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "ForceFeedback.framework"; path = "/System/Library/Frameworks/ForceFeedback.framework"; sourceTree = "<absolute>"; };
|
||||
6BD11EC345EF7D0A2F052B0D /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreFoundation.framework"; path = "/System/Library/Frameworks/CoreFoundation.framework"; sourceTree = "<absolute>"; };
|
||||
4E2F27481BE5130F71C969D4 /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "OpenGL.framework"; path = "/System/Library/Frameworks/OpenGL.framework"; sourceTree = "<absolute>"; };
|
||||
2F71516B7E4D05B61F113853 /* testoverlay2 */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = "testoverlay2"; path = "testoverlay2"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
12EB05A3126210B44E43311F /* SDL2main.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2main.xcodeproj"; path = "../../SDL2main/SDL2main.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
3E0626DF04355843419935DA /* SDL2.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2.xcodeproj"; path = "../../SDL2/SDL2.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
4D66654200E36E93193B06AD /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
3AF279FE14CA692708046DB4 /* AudioToolbox.framework in Frameworks */,
|
||||
301212F75420212E092E3175 /* AudioUnit.framework in Frameworks */,
|
||||
08870BD6311A585A20D46880 /* Cocoa.framework in Frameworks */,
|
||||
65A87AC11CBF631B28F2402E /* CoreAudio.framework in Frameworks */,
|
||||
43E104313E9F5B9A03BE4E12 /* IOKit.framework in Frameworks */,
|
||||
159042C076D351EF319E360C /* Carbon.framework in Frameworks */,
|
||||
672A1AC7378321517A336148 /* ForceFeedback.framework in Frameworks */,
|
||||
21024A424BBA385B68E674EE /* CoreFoundation.framework in Frameworks */,
|
||||
069120D46A0643D372906BDA /* OpenGL.framework in Frameworks */,
|
||||
39E37CE74D215AD0399B0986 /* libSDL2main.a in Frameworks */,
|
||||
2C2B5AD223BC180527FD596D /* libSDL2.a in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
431B349B3CD57B512B55626B /* testoverlay2 */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
196E118E01A7168F45B26233 /* test */,
|
||||
49964D4123AA757026994687 /* Frameworks */,
|
||||
6E417D940C1955933EA97A99 /* Products */,
|
||||
59456A9848CC619652D66D1B /* Projects */,
|
||||
);
|
||||
name = "testoverlay2";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
196E118E01A7168F45B26233 /* test */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
0D8A73571318159858096092 /* testoverlay2.c */,
|
||||
);
|
||||
name = "test";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
49964D4123AA757026994687 /* Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
0378471E362972885D2A2BEA /* AudioToolbox.framework */,
|
||||
03DE051C016D34B83FB85C77 /* AudioUnit.framework */,
|
||||
2F94243942F0572202694515 /* Cocoa.framework */,
|
||||
4BD52FFE58E2070F14E14B19 /* CoreAudio.framework */,
|
||||
1B3C31575AA200182BE02D09 /* IOKit.framework */,
|
||||
35644D2D583D110D1543751C /* Carbon.framework */,
|
||||
790A115D0D90768E17FB642F /* ForceFeedback.framework */,
|
||||
6BD11EC345EF7D0A2F052B0D /* CoreFoundation.framework */,
|
||||
4E2F27481BE5130F71C969D4 /* OpenGL.framework */,
|
||||
);
|
||||
name = "Frameworks";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
6E417D940C1955933EA97A99 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
2F71516B7E4D05B61F113853 /* testoverlay2 */,
|
||||
);
|
||||
name = "Products";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
59456A9848CC619652D66D1B /* Projects */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
12EB05A3126210B44E43311F /* SDL2main.xcodeproj */,
|
||||
3E0626DF04355843419935DA /* SDL2.xcodeproj */,
|
||||
);
|
||||
name = "Projects";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
27A82C4845D94C731EAA32DF /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
7AE62577644D2CA731DD52B6 /* libSDL2main.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
140C521F0754327726FC16E7 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
367154F61CFE7413423C7547 /* libSDL2.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
56516C2245453CCF63D7796B /* testoverlay2 */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 326F1CE535A62CA70B1403BC /* Build configuration list for PBXNativeTarget "testoverlay2" */;
|
||||
buildPhases = (
|
||||
37E2704B7E3C3E29090C12F2 /* Resources */,
|
||||
6C265DE42EE77B8F6DD776A5 /* Sources */,
|
||||
4D66654200E36E93193B06AD /* Frameworks */,
|
||||
9607AE3710C85E8F00CD1376 /* Postbuild */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
19F8017F4C525C89570D3D3B /* PBXTargetDependency */,
|
||||
1F5743CD69894FA41CD6632D /* PBXTargetDependency */,
|
||||
);
|
||||
name = "testoverlay2";
|
||||
productInstallPath = "$(HOME)/bin";
|
||||
productName = "testoverlay2";
|
||||
productReference = 2F71516B7E4D05B61F113853 /* testoverlay2 */;
|
||||
productType = "com.apple.product-type.tool";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
08FB7793FE84155DC02AAC07 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
buildConfigurationList = 1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testoverlay2" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
hasScannedForEncodings = 1;
|
||||
mainGroup = 431B349B3CD57B512B55626B /* testoverlay2 */;
|
||||
projectDirPath = "";
|
||||
projectReferences = (
|
||||
{
|
||||
ProductGroup = 27A82C4845D94C731EAA32DF /* Products */;
|
||||
ProjectRef = 12EB05A3126210B44E43311F /* SDL2main.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 140C521F0754327726FC16E7 /* Products */;
|
||||
ProjectRef = 3E0626DF04355843419935DA /* SDL2.xcodeproj */;
|
||||
},
|
||||
);
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
56516C2245453CCF63D7796B /* testoverlay2 */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXReferenceProxy section */
|
||||
7AE62577644D2CA731DD52B6 /* libSDL2main.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2main.a";
|
||||
remoteRef = 6B4B1C6C7B66128C34A969B2 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
367154F61CFE7413423C7547 /* libSDL2.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2.a";
|
||||
remoteRef = 520B0310111D0A7E6B396B34 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
/* End PBXReferenceProxy section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
37E2704B7E3C3E29090C12F2 /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXShellScriptBuildPhase section */
|
||||
9607AE3710C85E8F00CD1376 /* Postbuild */ = {
|
||||
isa = PBXShellScriptBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
inputPaths = (
|
||||
);
|
||||
name = Postbuild;
|
||||
outputPaths = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
shellPath = /bin/sh;
|
||||
shellScript = "if [ \"${CONFIGURATION}\" = \"Debug Universal\" ]; then\nif [ ! -d \"./Build/Debug\" ]; then mkdir -p \"./Build/Debug\"; fi\ncp \"./../../../../../test/moose.dat\" \"./Build/Debug/moose.dat\"\nfi\nif [ \"${CONFIGURATION}\" = \"Debug Native\" ]; then\nif [ ! -d \"./Build/Debug\" ]; then mkdir -p \"./Build/Debug\"; fi\ncp \"./../../../../../test/moose.dat\" \"./Build/Debug/moose.dat\"\nfi\nif [ \"${CONFIGURATION}\" = \"Release Universal\" ]; then\nif [ ! -d \"./Build/Release\" ]; then mkdir -p \"./Build/Release\"; fi\ncp \"./../../../../../test/moose.dat\" \"./Build/Release/moose.dat\"\nfi\nif [ \"${CONFIGURATION}\" = \"Release Native\" ]; then\nif [ ! -d \"./Build/Release\" ]; then mkdir -p \"./Build/Release\"; fi\ncp \"./../../../../../test/moose.dat\" \"./Build/Release/moose.dat\"\nfi";
|
||||
};
|
||||
/* End PBXShellScriptBuildPhase section */
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
6C265DE42EE77B8F6DD776A5 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
49E519755DE056E56EEE7984 /* testoverlay2.c in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXVariantGroup section */
|
||||
/* End PBXVariantGroup section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
19F8017F4C525C89570D3D3B /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2main.a";
|
||||
targetProxy = 5D2B6AD811B1074B5D53106B /* PBXContainerItemProxy */;
|
||||
};
|
||||
1F5743CD69894FA41CD6632D /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2.a";
|
||||
targetProxy = 28A92DF74FF77AC27A840D8C /* PBXContainerItemProxy */;
|
||||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
78C214CC065610BF6ED17E71 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testoverlay2";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
766B19EC5A9A52576B3A414F /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testoverlay2";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
07E239E42D1A4589546C3358 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testoverlay2";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
4FC5127147DC54F11B510568 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testoverlay2";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
354202B87F4938F833BE2648 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
52FA351172CB7BC54C0969B5 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
15C35A586D7D4DEB049F216E /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
226A5F246075325C433E30D3 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
326F1CE535A62CA70B1403BC /* Build configuration list for PBXNativeTarget "testoverlay2" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
78C214CC065610BF6ED17E71 /* Debug Universal */,
|
||||
766B19EC5A9A52576B3A414F /* Debug Native */,
|
||||
07E239E42D1A4589546C3358 /* Release Universal */,
|
||||
4FC5127147DC54F11B510568 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testoverlay2" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
354202B87F4938F833BE2648 /* Debug Universal */,
|
||||
52FA351172CB7BC54C0969B5 /* Debug Native */,
|
||||
15C35A586D7D4DEB049F216E /* Release Universal */,
|
||||
226A5F246075325C433E30D3 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
|
||||
};
|
||||
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
|
||||
}
|
457
premake/Xcode/Xcode3/tests/testplatform/testplatform.xcodeproj/project.pbxproj
Executable file
457
premake/Xcode/Xcode3/tests/testplatform/testplatform.xcodeproj/project.pbxproj
Executable file
|
@ -0,0 +1,457 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 45;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
37ED5BC504E9138129A27A3D /* testplatform.c in Sources */ = {isa = PBXBuildFile; fileRef = 081E1F192C0330BC475D4296 /* testplatform.c */; };
|
||||
7BD44B516E507E2A216E514C /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5336352002CA287D43566B0A /* AudioToolbox.framework */; };
|
||||
2F53050455B1110643DF18D2 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 004A2F7402DC5FDF324B0D91 /* AudioUnit.framework */; };
|
||||
25233B8A6C6563AE4D186991 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 119B173F39870AD61387282E /* Cocoa.framework */; };
|
||||
71AD2E5619C356AC5894190D /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3A3C48C84BAD7AE56C5421A3 /* CoreAudio.framework */; };
|
||||
32FB005309622C0464855F76 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 57172F88221944384441125B /* IOKit.framework */; };
|
||||
64A25E472BF24B0420D676FB /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 613107F83A4C04F571BD6BD6 /* Carbon.framework */; };
|
||||
57D71FDC65420FE72D161AD7 /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 68A26D321038787409204CF8 /* ForceFeedback.framework */; };
|
||||
268E67BC0E4F0C5E1C3C31B3 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 26720966305148371DC9346E /* CoreFoundation.framework */; };
|
||||
278F363354F52DDD14165A9B /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 754B3F294F913CA4334D0ECE /* OpenGL.framework */; };
|
||||
31BD7B65287525F65B00617D /* libSDL2main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 09EB3E7646B130C359E00123 /* libSDL2main.a */; };
|
||||
4A2D66E7747B49FA4A2504C2 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2FF52E8C6A59365464646C62 /* libSDL2.a */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
39566DEA46E31EA517AB0D81 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 29E63F1E737875EB4572421F /* SDL2main.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 58DC62993160374E09FF7AD6;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
4C79492F6C66532128085612 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 29E63F1E737875EB4572421F /* SDL2main.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 0E7126A94A11494963D3548B;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
2DA534AB5941742966457012 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 5BFF761378114C8623E12D8B /* SDL2.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 07D004B11E733F1F0EA93105;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
464F1F1C082A20D911C27747 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 5BFF761378114C8623E12D8B /* SDL2.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 58C10ED14175754444033E0E;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
081E1F192C0330BC475D4296 /* testplatform.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testplatform.c"; path = "../../../../../test/testplatform.c"; sourceTree = "<group>"; };
|
||||
5336352002CA287D43566B0A /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioToolbox.framework"; path = "/System/Library/Frameworks/AudioToolbox.framework"; sourceTree = "<absolute>"; };
|
||||
004A2F7402DC5FDF324B0D91 /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioUnit.framework"; path = "/System/Library/Frameworks/AudioUnit.framework"; sourceTree = "<absolute>"; };
|
||||
119B173F39870AD61387282E /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Cocoa.framework"; path = "/System/Library/Frameworks/Cocoa.framework"; sourceTree = "<absolute>"; };
|
||||
3A3C48C84BAD7AE56C5421A3 /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreAudio.framework"; path = "/System/Library/Frameworks/CoreAudio.framework"; sourceTree = "<absolute>"; };
|
||||
57172F88221944384441125B /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "IOKit.framework"; path = "/System/Library/Frameworks/IOKit.framework"; sourceTree = "<absolute>"; };
|
||||
613107F83A4C04F571BD6BD6 /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Carbon.framework"; path = "/System/Library/Frameworks/Carbon.framework"; sourceTree = "<absolute>"; };
|
||||
68A26D321038787409204CF8 /* ForceFeedback.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "ForceFeedback.framework"; path = "/System/Library/Frameworks/ForceFeedback.framework"; sourceTree = "<absolute>"; };
|
||||
26720966305148371DC9346E /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreFoundation.framework"; path = "/System/Library/Frameworks/CoreFoundation.framework"; sourceTree = "<absolute>"; };
|
||||
754B3F294F913CA4334D0ECE /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "OpenGL.framework"; path = "/System/Library/Frameworks/OpenGL.framework"; sourceTree = "<absolute>"; };
|
||||
097A37A016343C8E1B394B02 /* testplatform */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = "testplatform"; path = "testplatform"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
29E63F1E737875EB4572421F /* SDL2main.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2main.xcodeproj"; path = "../../SDL2main/SDL2main.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
5BFF761378114C8623E12D8B /* SDL2.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2.xcodeproj"; path = "../../SDL2/SDL2.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
3FDC37A9640D3975530C4F24 /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
7BD44B516E507E2A216E514C /* AudioToolbox.framework in Frameworks */,
|
||||
2F53050455B1110643DF18D2 /* AudioUnit.framework in Frameworks */,
|
||||
25233B8A6C6563AE4D186991 /* Cocoa.framework in Frameworks */,
|
||||
71AD2E5619C356AC5894190D /* CoreAudio.framework in Frameworks */,
|
||||
32FB005309622C0464855F76 /* IOKit.framework in Frameworks */,
|
||||
64A25E472BF24B0420D676FB /* Carbon.framework in Frameworks */,
|
||||
57D71FDC65420FE72D161AD7 /* ForceFeedback.framework in Frameworks */,
|
||||
268E67BC0E4F0C5E1C3C31B3 /* CoreFoundation.framework in Frameworks */,
|
||||
278F363354F52DDD14165A9B /* OpenGL.framework in Frameworks */,
|
||||
31BD7B65287525F65B00617D /* libSDL2main.a in Frameworks */,
|
||||
4A2D66E7747B49FA4A2504C2 /* libSDL2.a in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
21624A885D57213356FA6A34 /* testplatform */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
0E11168C6A10510F54A558DE /* test */,
|
||||
3AFA0F7B7A16543372D53159 /* Frameworks */,
|
||||
784B34771085434D2EF64D40 /* Products */,
|
||||
2C545EEB2A1562BB19053D80 /* Projects */,
|
||||
);
|
||||
name = "testplatform";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
0E11168C6A10510F54A558DE /* test */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
081E1F192C0330BC475D4296 /* testplatform.c */,
|
||||
);
|
||||
name = "test";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
3AFA0F7B7A16543372D53159 /* Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
5336352002CA287D43566B0A /* AudioToolbox.framework */,
|
||||
004A2F7402DC5FDF324B0D91 /* AudioUnit.framework */,
|
||||
119B173F39870AD61387282E /* Cocoa.framework */,
|
||||
3A3C48C84BAD7AE56C5421A3 /* CoreAudio.framework */,
|
||||
57172F88221944384441125B /* IOKit.framework */,
|
||||
613107F83A4C04F571BD6BD6 /* Carbon.framework */,
|
||||
68A26D321038787409204CF8 /* ForceFeedback.framework */,
|
||||
26720966305148371DC9346E /* CoreFoundation.framework */,
|
||||
754B3F294F913CA4334D0ECE /* OpenGL.framework */,
|
||||
);
|
||||
name = "Frameworks";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
784B34771085434D2EF64D40 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
097A37A016343C8E1B394B02 /* testplatform */,
|
||||
);
|
||||
name = "Products";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
2C545EEB2A1562BB19053D80 /* Projects */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
29E63F1E737875EB4572421F /* SDL2main.xcodeproj */,
|
||||
5BFF761378114C8623E12D8B /* SDL2.xcodeproj */,
|
||||
);
|
||||
name = "Projects";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
156209E929DC61A874763026 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
09EB3E7646B130C359E00123 /* libSDL2main.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
34272D02656233906FDC6D94 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
2FF52E8C6A59365464646C62 /* libSDL2.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
236D5B5F4B2838B77F863862 /* testplatform */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 1C1806252870035C492C7EF1 /* Build configuration list for PBXNativeTarget "testplatform" */;
|
||||
buildPhases = (
|
||||
18FD11B714CB5486678A5437 /* Resources */,
|
||||
7E3414ED775E6BC7778136D4 /* Sources */,
|
||||
3FDC37A9640D3975530C4F24 /* Frameworks */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
5ED23A6F02845C401CCB5568 /* PBXTargetDependency */,
|
||||
72EB340F4E1D121A17630010 /* PBXTargetDependency */,
|
||||
);
|
||||
name = "testplatform";
|
||||
productInstallPath = "$(HOME)/bin";
|
||||
productName = "testplatform";
|
||||
productReference = 097A37A016343C8E1B394B02 /* testplatform */;
|
||||
productType = "com.apple.product-type.tool";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
08FB7793FE84155DC02AAC07 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
buildConfigurationList = 1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testplatform" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
hasScannedForEncodings = 1;
|
||||
mainGroup = 21624A885D57213356FA6A34 /* testplatform */;
|
||||
projectDirPath = "";
|
||||
projectReferences = (
|
||||
{
|
||||
ProductGroup = 156209E929DC61A874763026 /* Products */;
|
||||
ProjectRef = 29E63F1E737875EB4572421F /* SDL2main.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 34272D02656233906FDC6D94 /* Products */;
|
||||
ProjectRef = 5BFF761378114C8623E12D8B /* SDL2.xcodeproj */;
|
||||
},
|
||||
);
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
236D5B5F4B2838B77F863862 /* testplatform */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXReferenceProxy section */
|
||||
09EB3E7646B130C359E00123 /* libSDL2main.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2main.a";
|
||||
remoteRef = 39566DEA46E31EA517AB0D81 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
2FF52E8C6A59365464646C62 /* libSDL2.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2.a";
|
||||
remoteRef = 2DA534AB5941742966457012 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
/* End PBXReferenceProxy section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
18FD11B714CB5486678A5437 /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
7E3414ED775E6BC7778136D4 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
37ED5BC504E9138129A27A3D /* testplatform.c in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXVariantGroup section */
|
||||
/* End PBXVariantGroup section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
5ED23A6F02845C401CCB5568 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2main.a";
|
||||
targetProxy = 4C79492F6C66532128085612 /* PBXContainerItemProxy */;
|
||||
};
|
||||
72EB340F4E1D121A17630010 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2.a";
|
||||
targetProxy = 464F1F1C082A20D911C27747 /* PBXContainerItemProxy */;
|
||||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
26C36FEF459F70D537F476D9 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testplatform";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
62764F0107E56C5B56C2701A /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testplatform";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
520762EA10B3650F462F6674 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testplatform";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
32D97D9F520A10CF30B40679 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testplatform";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
59C346A66ECA43064A79768F /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
5C672D0543DA541D76814AC5 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
62F7512358B56DD550D00D18 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
1FD822281EE77BDC642D710F /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
1C1806252870035C492C7EF1 /* Build configuration list for PBXNativeTarget "testplatform" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
26C36FEF459F70D537F476D9 /* Debug Universal */,
|
||||
62764F0107E56C5B56C2701A /* Debug Native */,
|
||||
520762EA10B3650F462F6674 /* Release Universal */,
|
||||
32D97D9F520A10CF30B40679 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testplatform" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
59C346A66ECA43064A79768F /* Debug Universal */,
|
||||
5C672D0543DA541D76814AC5 /* Debug Native */,
|
||||
62F7512358B56DD550D00D18 /* Release Universal */,
|
||||
1FD822281EE77BDC642D710F /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
|
||||
};
|
||||
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
|
||||
}
|
457
premake/Xcode/Xcode3/tests/testpower/testpower.xcodeproj/project.pbxproj
Executable file
457
premake/Xcode/Xcode3/tests/testpower/testpower.xcodeproj/project.pbxproj
Executable file
|
@ -0,0 +1,457 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 45;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
3EF228BD150B22660E004E05 /* testpower.c in Sources */ = {isa = PBXBuildFile; fileRef = 6B5938730D5F78115A727FBA /* testpower.c */; };
|
||||
7ACC73767C0349ED131C3DFD /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 717C33AB559824204B1A2C1A /* AudioToolbox.framework */; };
|
||||
1B3A025925754C517B1C7C7B /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 414A18503CBE7CE95FFE5673 /* AudioUnit.framework */; };
|
||||
1A7F0AAC43C225B0460C4376 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0A9811AB2E94173E08F92884 /* Cocoa.framework */; };
|
||||
40F315154D9B1C9254A4622E /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 368E29A65CE578046F5A1B90 /* CoreAudio.framework */; };
|
||||
739604C93F294BEF74C76BDD /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5D5C515B325F178D5B036253 /* IOKit.framework */; };
|
||||
28624182483D455422B25673 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 368F0BF311301C4C6A6C0874 /* Carbon.framework */; };
|
||||
26C63B8342C71EA76DDC2D47 /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3FF662D46CEE1B604D0C5267 /* ForceFeedback.framework */; };
|
||||
05C1482E62BD221E6923175B /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2F2074B609873ADE77FE6ADF /* CoreFoundation.framework */; };
|
||||
01E77B2608EC66BD27286309 /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 11DF593212465EA418476A0D /* OpenGL.framework */; };
|
||||
5EDD2A0E7D8468627FB83BBD /* libSDL2main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B86764A354F08580A6C5454 /* libSDL2main.a */; };
|
||||
320051A96DED11B90B856E40 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 182809E0557B364038186E61 /* libSDL2.a */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
13A073B65ADF0CF531CF4A73 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 11544BA13AFD75E077B1078E /* SDL2main.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 58DC62993160374E09FF7AD6;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
46B523493CBC0479601E63FC /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 11544BA13AFD75E077B1078E /* SDL2main.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 0E7126A94A11494963D3548B;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
43F668F002E543FF40C758BD /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 35B3225F3E157E356F1B0C43 /* SDL2.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 07D004B11E733F1F0EA93105;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
6E8B194676DD2F48313A6A06 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 35B3225F3E157E356F1B0C43 /* SDL2.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 58C10ED14175754444033E0E;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
6B5938730D5F78115A727FBA /* testpower.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testpower.c"; path = "../../../../../test/testpower.c"; sourceTree = "<group>"; };
|
||||
717C33AB559824204B1A2C1A /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioToolbox.framework"; path = "/System/Library/Frameworks/AudioToolbox.framework"; sourceTree = "<absolute>"; };
|
||||
414A18503CBE7CE95FFE5673 /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioUnit.framework"; path = "/System/Library/Frameworks/AudioUnit.framework"; sourceTree = "<absolute>"; };
|
||||
0A9811AB2E94173E08F92884 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Cocoa.framework"; path = "/System/Library/Frameworks/Cocoa.framework"; sourceTree = "<absolute>"; };
|
||||
368E29A65CE578046F5A1B90 /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreAudio.framework"; path = "/System/Library/Frameworks/CoreAudio.framework"; sourceTree = "<absolute>"; };
|
||||
5D5C515B325F178D5B036253 /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "IOKit.framework"; path = "/System/Library/Frameworks/IOKit.framework"; sourceTree = "<absolute>"; };
|
||||
368F0BF311301C4C6A6C0874 /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Carbon.framework"; path = "/System/Library/Frameworks/Carbon.framework"; sourceTree = "<absolute>"; };
|
||||
3FF662D46CEE1B604D0C5267 /* ForceFeedback.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "ForceFeedback.framework"; path = "/System/Library/Frameworks/ForceFeedback.framework"; sourceTree = "<absolute>"; };
|
||||
2F2074B609873ADE77FE6ADF /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreFoundation.framework"; path = "/System/Library/Frameworks/CoreFoundation.framework"; sourceTree = "<absolute>"; };
|
||||
11DF593212465EA418476A0D /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "OpenGL.framework"; path = "/System/Library/Frameworks/OpenGL.framework"; sourceTree = "<absolute>"; };
|
||||
569C4CDE26A55BBC46423C94 /* testpower */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = "testpower"; path = "testpower"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
11544BA13AFD75E077B1078E /* SDL2main.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2main.xcodeproj"; path = "../../SDL2main/SDL2main.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
35B3225F3E157E356F1B0C43 /* SDL2.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2.xcodeproj"; path = "../../SDL2/SDL2.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
64CC1CB9570652B461031A69 /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
7ACC73767C0349ED131C3DFD /* AudioToolbox.framework in Frameworks */,
|
||||
1B3A025925754C517B1C7C7B /* AudioUnit.framework in Frameworks */,
|
||||
1A7F0AAC43C225B0460C4376 /* Cocoa.framework in Frameworks */,
|
||||
40F315154D9B1C9254A4622E /* CoreAudio.framework in Frameworks */,
|
||||
739604C93F294BEF74C76BDD /* IOKit.framework in Frameworks */,
|
||||
28624182483D455422B25673 /* Carbon.framework in Frameworks */,
|
||||
26C63B8342C71EA76DDC2D47 /* ForceFeedback.framework in Frameworks */,
|
||||
05C1482E62BD221E6923175B /* CoreFoundation.framework in Frameworks */,
|
||||
01E77B2608EC66BD27286309 /* OpenGL.framework in Frameworks */,
|
||||
5EDD2A0E7D8468627FB83BBD /* libSDL2main.a in Frameworks */,
|
||||
320051A96DED11B90B856E40 /* libSDL2.a in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
2D8676AB61876C230226250F /* testpower */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
369D04672F153C0F3AEF5637 /* test */,
|
||||
55CD1192485C19AA6BB47AB8 /* Frameworks */,
|
||||
03250FB568812580294376A1 /* Products */,
|
||||
6A0B144B4FCE60FF11E505DF /* Projects */,
|
||||
);
|
||||
name = "testpower";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
369D04672F153C0F3AEF5637 /* test */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
6B5938730D5F78115A727FBA /* testpower.c */,
|
||||
);
|
||||
name = "test";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
55CD1192485C19AA6BB47AB8 /* Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
717C33AB559824204B1A2C1A /* AudioToolbox.framework */,
|
||||
414A18503CBE7CE95FFE5673 /* AudioUnit.framework */,
|
||||
0A9811AB2E94173E08F92884 /* Cocoa.framework */,
|
||||
368E29A65CE578046F5A1B90 /* CoreAudio.framework */,
|
||||
5D5C515B325F178D5B036253 /* IOKit.framework */,
|
||||
368F0BF311301C4C6A6C0874 /* Carbon.framework */,
|
||||
3FF662D46CEE1B604D0C5267 /* ForceFeedback.framework */,
|
||||
2F2074B609873ADE77FE6ADF /* CoreFoundation.framework */,
|
||||
11DF593212465EA418476A0D /* OpenGL.framework */,
|
||||
);
|
||||
name = "Frameworks";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
03250FB568812580294376A1 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
569C4CDE26A55BBC46423C94 /* testpower */,
|
||||
);
|
||||
name = "Products";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
6A0B144B4FCE60FF11E505DF /* Projects */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
11544BA13AFD75E077B1078E /* SDL2main.xcodeproj */,
|
||||
35B3225F3E157E356F1B0C43 /* SDL2.xcodeproj */,
|
||||
);
|
||||
name = "Projects";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
3D0C5EDC63F174F9414E7F06 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
3B86764A354F08580A6C5454 /* libSDL2main.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
48327DFD06661A16561A78F3 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
182809E0557B364038186E61 /* libSDL2.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
554817E143653BEB41F80C48 /* testpower */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 2FD54A0672920E44366F3F39 /* Build configuration list for PBXNativeTarget "testpower" */;
|
||||
buildPhases = (
|
||||
5FA347491FB2087951E0619C /* Resources */,
|
||||
53C604B203630DF7135B417C /* Sources */,
|
||||
64CC1CB9570652B461031A69 /* Frameworks */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
3AC84E14125C5A2610A61EE6 /* PBXTargetDependency */,
|
||||
6086076E558A67E515024F25 /* PBXTargetDependency */,
|
||||
);
|
||||
name = "testpower";
|
||||
productInstallPath = "$(HOME)/bin";
|
||||
productName = "testpower";
|
||||
productReference = 569C4CDE26A55BBC46423C94 /* testpower */;
|
||||
productType = "com.apple.product-type.tool";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
08FB7793FE84155DC02AAC07 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
buildConfigurationList = 1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testpower" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
hasScannedForEncodings = 1;
|
||||
mainGroup = 2D8676AB61876C230226250F /* testpower */;
|
||||
projectDirPath = "";
|
||||
projectReferences = (
|
||||
{
|
||||
ProductGroup = 3D0C5EDC63F174F9414E7F06 /* Products */;
|
||||
ProjectRef = 11544BA13AFD75E077B1078E /* SDL2main.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 48327DFD06661A16561A78F3 /* Products */;
|
||||
ProjectRef = 35B3225F3E157E356F1B0C43 /* SDL2.xcodeproj */;
|
||||
},
|
||||
);
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
554817E143653BEB41F80C48 /* testpower */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXReferenceProxy section */
|
||||
3B86764A354F08580A6C5454 /* libSDL2main.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2main.a";
|
||||
remoteRef = 13A073B65ADF0CF531CF4A73 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
182809E0557B364038186E61 /* libSDL2.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2.a";
|
||||
remoteRef = 43F668F002E543FF40C758BD /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
/* End PBXReferenceProxy section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
5FA347491FB2087951E0619C /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
53C604B203630DF7135B417C /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
3EF228BD150B22660E004E05 /* testpower.c in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXVariantGroup section */
|
||||
/* End PBXVariantGroup section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
3AC84E14125C5A2610A61EE6 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2main.a";
|
||||
targetProxy = 46B523493CBC0479601E63FC /* PBXContainerItemProxy */;
|
||||
};
|
||||
6086076E558A67E515024F25 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2.a";
|
||||
targetProxy = 6E8B194676DD2F48313A6A06 /* PBXContainerItemProxy */;
|
||||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
797574996A3A4001332E3169 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testpower";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
26B813830E18591328B601E6 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testpower";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
7F2F746B47EE618B13AA3A0D /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testpower";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
18336CF16D6C067E59B857E4 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testpower";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
0E3339071F5D309E09431580 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
314C0D4F4A054F2116242D3B /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
32557BD64874521F74E65003 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
40201D0E34EC167717D67C39 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
2FD54A0672920E44366F3F39 /* Build configuration list for PBXNativeTarget "testpower" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
797574996A3A4001332E3169 /* Debug Universal */,
|
||||
26B813830E18591328B601E6 /* Debug Native */,
|
||||
7F2F746B47EE618B13AA3A0D /* Release Universal */,
|
||||
18336CF16D6C067E59B857E4 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testpower" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
0E3339071F5D309E09431580 /* Debug Universal */,
|
||||
314C0D4F4A054F2116242D3B /* Debug Native */,
|
||||
32557BD64874521F74E65003 /* Release Universal */,
|
||||
40201D0E34EC167717D67C39 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
|
||||
};
|
||||
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
|
||||
}
|
500
premake/Xcode/Xcode3/tests/testrelative/testrelative.xcodeproj/project.pbxproj
Executable file
500
premake/Xcode/Xcode3/tests/testrelative/testrelative.xcodeproj/project.pbxproj
Executable file
|
@ -0,0 +1,500 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 45;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
4BE141385FC25AAF52EF5D0E /* testrelative.c in Sources */ = {isa = PBXBuildFile; fileRef = 23C84D8E25D43E932E076CE5 /* testrelative.c */; };
|
||||
52A902EA6BB0203F1A3D5A56 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B6B7821495513D336363342 /* AudioToolbox.framework */; };
|
||||
4CB4614718715F5764207380 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 04C9563C37A3433E31E617E9 /* AudioUnit.framework */; };
|
||||
0BCA393B6DD27CA7621B653D /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5FCE029470145A6965136097 /* Cocoa.framework */; };
|
||||
116733C576FC23CD10F77A40 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 11D0109F422B16BB5C8F3FA9 /* CoreAudio.framework */; };
|
||||
614C738344D3225E099E0B63 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0E377BED367C3032325C3776 /* IOKit.framework */; };
|
||||
29D710204F5761C245564391 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 272E55E60D2E5F926C7175DF /* Carbon.framework */; };
|
||||
6CC66AAE6E635E5065CA604A /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 193F338F7815345753483993 /* ForceFeedback.framework */; };
|
||||
7B44599D5A7F788310FF7545 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 20905BFD77D424365A1B22FE /* CoreFoundation.framework */; };
|
||||
39890A111ED55C9B4DED0CEA /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 12F0584071CD08201E2D59CB /* OpenGL.framework */; };
|
||||
3E33469041386CE404C87065 /* libSDL2main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2455670C53241E4003D7355C /* libSDL2main.a */; };
|
||||
1EC25F1D781A04BF3E5003AA /* libSDL2test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FFF657F7BDE594C2E2B2045 /* libSDL2test.a */; };
|
||||
0EAD05E06BDB113B3EE6263D /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 348A77A855704B1A331123A6 /* libSDL2.a */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
11BD4F4211CD67F065100B16 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 756361F4075435AF77BE782C /* SDL2main.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 58DC62993160374E09FF7AD6;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
6B42469B10CE720753732810 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 756361F4075435AF77BE782C /* SDL2main.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 0E7126A94A11494963D3548B;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
1CDE37AB4F14469920973612 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 15F67762478644B17EA51421 /* SDL2test.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 1E1175156F97314C291323CB;
|
||||
remoteInfo = "libSDL2test.a";
|
||||
};
|
||||
015A59C06021496B36B21217 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 15F67762478644B17EA51421 /* SDL2test.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 7CD70F5D43DA554D66287CFC;
|
||||
remoteInfo = "libSDL2test.a";
|
||||
};
|
||||
5D361A0D4E967F8856544BDE /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 4DFC775262036B1004707A92 /* SDL2.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 07D004B11E733F1F0EA93105;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
65E80CEB298A4AE45CCF57AE /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 4DFC775262036B1004707A92 /* SDL2.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 58C10ED14175754444033E0E;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
23C84D8E25D43E932E076CE5 /* testrelative.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testrelative.c"; path = "../../../../../test/testrelative.c"; sourceTree = "<group>"; };
|
||||
3B6B7821495513D336363342 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioToolbox.framework"; path = "/System/Library/Frameworks/AudioToolbox.framework"; sourceTree = "<absolute>"; };
|
||||
04C9563C37A3433E31E617E9 /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioUnit.framework"; path = "/System/Library/Frameworks/AudioUnit.framework"; sourceTree = "<absolute>"; };
|
||||
5FCE029470145A6965136097 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Cocoa.framework"; path = "/System/Library/Frameworks/Cocoa.framework"; sourceTree = "<absolute>"; };
|
||||
11D0109F422B16BB5C8F3FA9 /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreAudio.framework"; path = "/System/Library/Frameworks/CoreAudio.framework"; sourceTree = "<absolute>"; };
|
||||
0E377BED367C3032325C3776 /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "IOKit.framework"; path = "/System/Library/Frameworks/IOKit.framework"; sourceTree = "<absolute>"; };
|
||||
272E55E60D2E5F926C7175DF /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Carbon.framework"; path = "/System/Library/Frameworks/Carbon.framework"; sourceTree = "<absolute>"; };
|
||||
193F338F7815345753483993 /* ForceFeedback.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "ForceFeedback.framework"; path = "/System/Library/Frameworks/ForceFeedback.framework"; sourceTree = "<absolute>"; };
|
||||
20905BFD77D424365A1B22FE /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreFoundation.framework"; path = "/System/Library/Frameworks/CoreFoundation.framework"; sourceTree = "<absolute>"; };
|
||||
12F0584071CD08201E2D59CB /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "OpenGL.framework"; path = "/System/Library/Frameworks/OpenGL.framework"; sourceTree = "<absolute>"; };
|
||||
2753719C67214549698B471C /* testrelative */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = "testrelative"; path = "testrelative"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
756361F4075435AF77BE782C /* SDL2main.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2main.xcodeproj"; path = "../../SDL2main/SDL2main.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
15F67762478644B17EA51421 /* SDL2test.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2test.xcodeproj"; path = "../../SDL2test/SDL2test.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
4DFC775262036B1004707A92 /* SDL2.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2.xcodeproj"; path = "../../SDL2/SDL2.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
2A6975C573F642F315653B7E /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
52A902EA6BB0203F1A3D5A56 /* AudioToolbox.framework in Frameworks */,
|
||||
4CB4614718715F5764207380 /* AudioUnit.framework in Frameworks */,
|
||||
0BCA393B6DD27CA7621B653D /* Cocoa.framework in Frameworks */,
|
||||
116733C576FC23CD10F77A40 /* CoreAudio.framework in Frameworks */,
|
||||
614C738344D3225E099E0B63 /* IOKit.framework in Frameworks */,
|
||||
29D710204F5761C245564391 /* Carbon.framework in Frameworks */,
|
||||
6CC66AAE6E635E5065CA604A /* ForceFeedback.framework in Frameworks */,
|
||||
7B44599D5A7F788310FF7545 /* CoreFoundation.framework in Frameworks */,
|
||||
39890A111ED55C9B4DED0CEA /* OpenGL.framework in Frameworks */,
|
||||
3E33469041386CE404C87065 /* libSDL2main.a in Frameworks */,
|
||||
1EC25F1D781A04BF3E5003AA /* libSDL2test.a in Frameworks */,
|
||||
0EAD05E06BDB113B3EE6263D /* libSDL2.a in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
418A78AC16316F1E2E922AFA /* testrelative */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
425644E27C276E66160A0B59 /* test */,
|
||||
71881C856A16603C215D1E2F /* Frameworks */,
|
||||
7D165D173F4C45A307CB5115 /* Products */,
|
||||
4B2245BE5B1C1B097ED42E2A /* Projects */,
|
||||
);
|
||||
name = "testrelative";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
425644E27C276E66160A0B59 /* test */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
23C84D8E25D43E932E076CE5 /* testrelative.c */,
|
||||
);
|
||||
name = "test";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
71881C856A16603C215D1E2F /* Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
3B6B7821495513D336363342 /* AudioToolbox.framework */,
|
||||
04C9563C37A3433E31E617E9 /* AudioUnit.framework */,
|
||||
5FCE029470145A6965136097 /* Cocoa.framework */,
|
||||
11D0109F422B16BB5C8F3FA9 /* CoreAudio.framework */,
|
||||
0E377BED367C3032325C3776 /* IOKit.framework */,
|
||||
272E55E60D2E5F926C7175DF /* Carbon.framework */,
|
||||
193F338F7815345753483993 /* ForceFeedback.framework */,
|
||||
20905BFD77D424365A1B22FE /* CoreFoundation.framework */,
|
||||
12F0584071CD08201E2D59CB /* OpenGL.framework */,
|
||||
);
|
||||
name = "Frameworks";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
7D165D173F4C45A307CB5115 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
2753719C67214549698B471C /* testrelative */,
|
||||
);
|
||||
name = "Products";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
4B2245BE5B1C1B097ED42E2A /* Projects */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
756361F4075435AF77BE782C /* SDL2main.xcodeproj */,
|
||||
15F67762478644B17EA51421 /* SDL2test.xcodeproj */,
|
||||
4DFC775262036B1004707A92 /* SDL2.xcodeproj */,
|
||||
);
|
||||
name = "Projects";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
7AEC51C57CE46F7440330A7C /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
2455670C53241E4003D7355C /* libSDL2main.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
716124AE421B1CCA387A5D24 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
0FFF657F7BDE594C2E2B2045 /* libSDL2test.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
6A25268B0AE00DB845FF0AD5 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
348A77A855704B1A331123A6 /* libSDL2.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
360121FD11CA1DA9461F408E /* testrelative */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 7D58432F59731B495B954300 /* Build configuration list for PBXNativeTarget "testrelative" */;
|
||||
buildPhases = (
|
||||
50A91E8D60B73C660C1F5A01 /* Resources */,
|
||||
0AA10F7D1441446002E471C8 /* Sources */,
|
||||
2A6975C573F642F315653B7E /* Frameworks */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
5E8C5CC51CAF43E108F52C4B /* PBXTargetDependency */,
|
||||
29896D0B1118695222B947C9 /* PBXTargetDependency */,
|
||||
09825D3C12883E7067BE230B /* PBXTargetDependency */,
|
||||
);
|
||||
name = "testrelative";
|
||||
productInstallPath = "$(HOME)/bin";
|
||||
productName = "testrelative";
|
||||
productReference = 2753719C67214549698B471C /* testrelative */;
|
||||
productType = "com.apple.product-type.tool";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
08FB7793FE84155DC02AAC07 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
buildConfigurationList = 1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testrelative" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
hasScannedForEncodings = 1;
|
||||
mainGroup = 418A78AC16316F1E2E922AFA /* testrelative */;
|
||||
projectDirPath = "";
|
||||
projectReferences = (
|
||||
{
|
||||
ProductGroup = 7AEC51C57CE46F7440330A7C /* Products */;
|
||||
ProjectRef = 756361F4075435AF77BE782C /* SDL2main.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 716124AE421B1CCA387A5D24 /* Products */;
|
||||
ProjectRef = 15F67762478644B17EA51421 /* SDL2test.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 6A25268B0AE00DB845FF0AD5 /* Products */;
|
||||
ProjectRef = 4DFC775262036B1004707A92 /* SDL2.xcodeproj */;
|
||||
},
|
||||
);
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
360121FD11CA1DA9461F408E /* testrelative */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXReferenceProxy section */
|
||||
2455670C53241E4003D7355C /* libSDL2main.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2main.a";
|
||||
remoteRef = 11BD4F4211CD67F065100B16 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
0FFF657F7BDE594C2E2B2045 /* libSDL2test.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2test.a";
|
||||
remoteRef = 1CDE37AB4F14469920973612 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
348A77A855704B1A331123A6 /* libSDL2.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2.a";
|
||||
remoteRef = 5D361A0D4E967F8856544BDE /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
/* End PBXReferenceProxy section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
50A91E8D60B73C660C1F5A01 /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
0AA10F7D1441446002E471C8 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
4BE141385FC25AAF52EF5D0E /* testrelative.c in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXVariantGroup section */
|
||||
/* End PBXVariantGroup section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
5E8C5CC51CAF43E108F52C4B /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2main.a";
|
||||
targetProxy = 6B42469B10CE720753732810 /* PBXContainerItemProxy */;
|
||||
};
|
||||
29896D0B1118695222B947C9 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2test.a";
|
||||
targetProxy = 015A59C06021496B36B21217 /* PBXContainerItemProxy */;
|
||||
};
|
||||
09825D3C12883E7067BE230B /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2.a";
|
||||
targetProxy = 65E80CEB298A4AE45CCF57AE /* PBXContainerItemProxy */;
|
||||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
43E930EB48062A1015DE5EB8 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testrelative";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
54B96EB40D14420F04292960 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testrelative";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
38E3583A7176019D17E4098C /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testrelative";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
66CF339A557E44FD6E796621 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testrelative";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
1DDB22D22994569421FB1030 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
1354287A1286355450646B8A /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
73ED61310132107232117A3F /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
0937058C5923313D3E536257 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
7D58432F59731B495B954300 /* Build configuration list for PBXNativeTarget "testrelative" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
43E930EB48062A1015DE5EB8 /* Debug Universal */,
|
||||
54B96EB40D14420F04292960 /* Debug Native */,
|
||||
38E3583A7176019D17E4098C /* Release Universal */,
|
||||
66CF339A557E44FD6E796621 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testrelative" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
1DDB22D22994569421FB1030 /* Debug Universal */,
|
||||
1354287A1286355450646B8A /* Debug Native */,
|
||||
73ED61310132107232117A3F /* Release Universal */,
|
||||
0937058C5923313D3E536257 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
|
||||
};
|
||||
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
|
||||
}
|
|
@ -0,0 +1,517 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 45;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
6E8C5D734CF62AC02E2A628C /* testrendercopyex.c in Sources */ = {isa = PBXBuildFile; fileRef = 353209D3375F65A759A91183 /* testrendercopyex.c */; };
|
||||
28D600651FEF07A50B9971EC /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5BD538AC44230FBC1DEB5849 /* AudioToolbox.framework */; };
|
||||
2882256265181F552134768B /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 61C63DC55B95422340FB3584 /* AudioUnit.framework */; };
|
||||
2E902AD445FA5D18136E4E8C /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 29425C772989211E4CB678B6 /* Cocoa.framework */; };
|
||||
02964DEE7A5037066CE97636 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 68BD73FC415D4E7C5A797E28 /* CoreAudio.framework */; };
|
||||
16072B0D0CD72A387EAD37F5 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6DC123D30BFF2A2E36FC7518 /* IOKit.framework */; };
|
||||
6BBA355F1CED1BAC3E1B09B7 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4EF14DDA3B145C9D78C17D09 /* Carbon.framework */; };
|
||||
4FB83D6B68E3167D051134BA /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 527E6D7146EB1F876CB96FD0 /* ForceFeedback.framework */; };
|
||||
099405A406203D7E1D2D7E21 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2A82641D544A5AFE16B84383 /* CoreFoundation.framework */; };
|
||||
5FC7220501E5043418C5420A /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 60BA7B0B10B154D64A20298C /* OpenGL.framework */; };
|
||||
291F6751239E1A4A75DB7DFA /* libSDL2main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2CE10C33796F7ED04A7D661F /* libSDL2main.a */; };
|
||||
1CD77D1A3AC57B96363174FD /* libSDL2test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 0E4A36C205D6384A3C18559E /* libSDL2test.a */; };
|
||||
73626470290E735104D21BB4 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 002D3E8461A530CE5D8A1613 /* libSDL2.a */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
557A4002043D621175310F7B /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 1F963BA70DA6400C0A6E4784 /* SDL2main.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 58DC62993160374E09FF7AD6;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
0D933B3057FF40D6491C69FF /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 1F963BA70DA6400C0A6E4784 /* SDL2main.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 0E7126A94A11494963D3548B;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
4DB203F95FB172A15DBE6900 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 326520CF17B318C34CA51272 /* SDL2test.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 1E1175156F97314C291323CB;
|
||||
remoteInfo = "libSDL2test.a";
|
||||
};
|
||||
13B63D4042FB7093495A389B /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 326520CF17B318C34CA51272 /* SDL2test.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 7CD70F5D43DA554D66287CFC;
|
||||
remoteInfo = "libSDL2test.a";
|
||||
};
|
||||
40837EDF6B281C520A0448EE /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 483C18416E0E7C197F7238B5 /* SDL2.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 07D004B11E733F1F0EA93105;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
1D371817285041810DA0112A /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 483C18416E0E7C197F7238B5 /* SDL2.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 58C10ED14175754444033E0E;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
353209D3375F65A759A91183 /* testrendercopyex.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testrendercopyex.c"; path = "../../../../../test/testrendercopyex.c"; sourceTree = "<group>"; };
|
||||
5BD538AC44230FBC1DEB5849 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioToolbox.framework"; path = "/System/Library/Frameworks/AudioToolbox.framework"; sourceTree = "<absolute>"; };
|
||||
61C63DC55B95422340FB3584 /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioUnit.framework"; path = "/System/Library/Frameworks/AudioUnit.framework"; sourceTree = "<absolute>"; };
|
||||
29425C772989211E4CB678B6 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Cocoa.framework"; path = "/System/Library/Frameworks/Cocoa.framework"; sourceTree = "<absolute>"; };
|
||||
68BD73FC415D4E7C5A797E28 /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreAudio.framework"; path = "/System/Library/Frameworks/CoreAudio.framework"; sourceTree = "<absolute>"; };
|
||||
6DC123D30BFF2A2E36FC7518 /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "IOKit.framework"; path = "/System/Library/Frameworks/IOKit.framework"; sourceTree = "<absolute>"; };
|
||||
4EF14DDA3B145C9D78C17D09 /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Carbon.framework"; path = "/System/Library/Frameworks/Carbon.framework"; sourceTree = "<absolute>"; };
|
||||
527E6D7146EB1F876CB96FD0 /* ForceFeedback.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "ForceFeedback.framework"; path = "/System/Library/Frameworks/ForceFeedback.framework"; sourceTree = "<absolute>"; };
|
||||
2A82641D544A5AFE16B84383 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreFoundation.framework"; path = "/System/Library/Frameworks/CoreFoundation.framework"; sourceTree = "<absolute>"; };
|
||||
60BA7B0B10B154D64A20298C /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "OpenGL.framework"; path = "/System/Library/Frameworks/OpenGL.framework"; sourceTree = "<absolute>"; };
|
||||
5087525F0A1453AF2F9A6588 /* testrendercopyex */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = "testrendercopyex"; path = "testrendercopyex"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
1F963BA70DA6400C0A6E4784 /* SDL2main.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2main.xcodeproj"; path = "../../SDL2main/SDL2main.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
326520CF17B318C34CA51272 /* SDL2test.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2test.xcodeproj"; path = "../../SDL2test/SDL2test.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
483C18416E0E7C197F7238B5 /* SDL2.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2.xcodeproj"; path = "../../SDL2/SDL2.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
3FDD6E742FAE04D07CFB6D74 /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
28D600651FEF07A50B9971EC /* AudioToolbox.framework in Frameworks */,
|
||||
2882256265181F552134768B /* AudioUnit.framework in Frameworks */,
|
||||
2E902AD445FA5D18136E4E8C /* Cocoa.framework in Frameworks */,
|
||||
02964DEE7A5037066CE97636 /* CoreAudio.framework in Frameworks */,
|
||||
16072B0D0CD72A387EAD37F5 /* IOKit.framework in Frameworks */,
|
||||
6BBA355F1CED1BAC3E1B09B7 /* Carbon.framework in Frameworks */,
|
||||
4FB83D6B68E3167D051134BA /* ForceFeedback.framework in Frameworks */,
|
||||
099405A406203D7E1D2D7E21 /* CoreFoundation.framework in Frameworks */,
|
||||
5FC7220501E5043418C5420A /* OpenGL.framework in Frameworks */,
|
||||
291F6751239E1A4A75DB7DFA /* libSDL2main.a in Frameworks */,
|
||||
1CD77D1A3AC57B96363174FD /* libSDL2test.a in Frameworks */,
|
||||
73626470290E735104D21BB4 /* libSDL2.a in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
251C69F41B3F726174443202 /* testrendercopyex */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
61DD08695F8F3DDB05493A14 /* test */,
|
||||
66BA50F11059531C60923BFE /* Frameworks */,
|
||||
332D5C542BF82FE916053248 /* Products */,
|
||||
3722498D7B70133662F40C7A /* Projects */,
|
||||
);
|
||||
name = "testrendercopyex";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
61DD08695F8F3DDB05493A14 /* test */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
353209D3375F65A759A91183 /* testrendercopyex.c */,
|
||||
);
|
||||
name = "test";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
66BA50F11059531C60923BFE /* Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
5BD538AC44230FBC1DEB5849 /* AudioToolbox.framework */,
|
||||
61C63DC55B95422340FB3584 /* AudioUnit.framework */,
|
||||
29425C772989211E4CB678B6 /* Cocoa.framework */,
|
||||
68BD73FC415D4E7C5A797E28 /* CoreAudio.framework */,
|
||||
6DC123D30BFF2A2E36FC7518 /* IOKit.framework */,
|
||||
4EF14DDA3B145C9D78C17D09 /* Carbon.framework */,
|
||||
527E6D7146EB1F876CB96FD0 /* ForceFeedback.framework */,
|
||||
2A82641D544A5AFE16B84383 /* CoreFoundation.framework */,
|
||||
60BA7B0B10B154D64A20298C /* OpenGL.framework */,
|
||||
);
|
||||
name = "Frameworks";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
332D5C542BF82FE916053248 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
5087525F0A1453AF2F9A6588 /* testrendercopyex */,
|
||||
);
|
||||
name = "Products";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
3722498D7B70133662F40C7A /* Projects */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
1F963BA70DA6400C0A6E4784 /* SDL2main.xcodeproj */,
|
||||
326520CF17B318C34CA51272 /* SDL2test.xcodeproj */,
|
||||
483C18416E0E7C197F7238B5 /* SDL2.xcodeproj */,
|
||||
);
|
||||
name = "Projects";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
1DF54D335F07031E66B12A6A /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
2CE10C33796F7ED04A7D661F /* libSDL2main.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
50BB422B200B724E6F850FD0 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
0E4A36C205D6384A3C18559E /* libSDL2test.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
484E1DB0205361030D1B0F46 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
002D3E8461A530CE5D8A1613 /* libSDL2.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
557C7D5C52F640C955CB0F67 /* testrendercopyex */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 59E3072F380A3C4A325F130D /* Build configuration list for PBXNativeTarget "testrendercopyex" */;
|
||||
buildPhases = (
|
||||
5B1B6AAF180F28375ADB1C63 /* Resources */,
|
||||
62F761C96CF0025F32C158CE /* Sources */,
|
||||
3FDD6E742FAE04D07CFB6D74 /* Frameworks */,
|
||||
9607AE3710C85E8F00CD1376 /* Postbuild */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
172122C5708535651DDE65C6 /* PBXTargetDependency */,
|
||||
75D50FC35348521025404D82 /* PBXTargetDependency */,
|
||||
06264C7B60C120251C9B1488 /* PBXTargetDependency */,
|
||||
);
|
||||
name = "testrendercopyex";
|
||||
productInstallPath = "$(HOME)/bin";
|
||||
productName = "testrendercopyex";
|
||||
productReference = 5087525F0A1453AF2F9A6588 /* testrendercopyex */;
|
||||
productType = "com.apple.product-type.tool";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
08FB7793FE84155DC02AAC07 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
buildConfigurationList = 1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testrendercopyex" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
hasScannedForEncodings = 1;
|
||||
mainGroup = 251C69F41B3F726174443202 /* testrendercopyex */;
|
||||
projectDirPath = "";
|
||||
projectReferences = (
|
||||
{
|
||||
ProductGroup = 1DF54D335F07031E66B12A6A /* Products */;
|
||||
ProjectRef = 1F963BA70DA6400C0A6E4784 /* SDL2main.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 50BB422B200B724E6F850FD0 /* Products */;
|
||||
ProjectRef = 326520CF17B318C34CA51272 /* SDL2test.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 484E1DB0205361030D1B0F46 /* Products */;
|
||||
ProjectRef = 483C18416E0E7C197F7238B5 /* SDL2.xcodeproj */;
|
||||
},
|
||||
);
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
557C7D5C52F640C955CB0F67 /* testrendercopyex */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXReferenceProxy section */
|
||||
2CE10C33796F7ED04A7D661F /* libSDL2main.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2main.a";
|
||||
remoteRef = 557A4002043D621175310F7B /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
0E4A36C205D6384A3C18559E /* libSDL2test.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2test.a";
|
||||
remoteRef = 4DB203F95FB172A15DBE6900 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
002D3E8461A530CE5D8A1613 /* libSDL2.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2.a";
|
||||
remoteRef = 40837EDF6B281C520A0448EE /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
/* End PBXReferenceProxy section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
5B1B6AAF180F28375ADB1C63 /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXShellScriptBuildPhase section */
|
||||
9607AE3710C85E8F00CD1376 /* Postbuild */ = {
|
||||
isa = PBXShellScriptBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
inputPaths = (
|
||||
);
|
||||
name = Postbuild;
|
||||
outputPaths = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
shellPath = /bin/sh;
|
||||
shellScript = "if [ \"${CONFIGURATION}\" = \"Debug Universal\" ]; then\nif [ ! -d \"./Build/Debug\" ]; then mkdir -p \"./Build/Debug\"; fi\ncp \"./../../../../../test/icon.bmp\" \"./Build/Debug/icon.bmp\"\ncp \"./../../../../../test/sample.bmp\" \"./Build/Debug/sample.bmp\"\nfi\nif [ \"${CONFIGURATION}\" = \"Debug Native\" ]; then\nif [ ! -d \"./Build/Debug\" ]; then mkdir -p \"./Build/Debug\"; fi\ncp \"./../../../../../test/icon.bmp\" \"./Build/Debug/icon.bmp\"\ncp \"./../../../../../test/sample.bmp\" \"./Build/Debug/sample.bmp\"\nfi\nif [ \"${CONFIGURATION}\" = \"Release Universal\" ]; then\nif [ ! -d \"./Build/Release\" ]; then mkdir -p \"./Build/Release\"; fi\ncp \"./../../../../../test/icon.bmp\" \"./Build/Release/icon.bmp\"\ncp \"./../../../../../test/sample.bmp\" \"./Build/Release/sample.bmp\"\nfi\nif [ \"${CONFIGURATION}\" = \"Release Native\" ]; then\nif [ ! -d \"./Build/Release\" ]; then mkdir -p \"./Build/Release\"; fi\ncp \"./../../../../../test/icon.bmp\" \"./Build/Release/icon.bmp\"\ncp \"./../../../../../test/sample.bmp\" \"./Build/Release/sample.bmp\"\nfi";
|
||||
};
|
||||
/* End PBXShellScriptBuildPhase section */
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
62F761C96CF0025F32C158CE /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
6E8C5D734CF62AC02E2A628C /* testrendercopyex.c in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXVariantGroup section */
|
||||
/* End PBXVariantGroup section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
172122C5708535651DDE65C6 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2main.a";
|
||||
targetProxy = 0D933B3057FF40D6491C69FF /* PBXContainerItemProxy */;
|
||||
};
|
||||
75D50FC35348521025404D82 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2test.a";
|
||||
targetProxy = 13B63D4042FB7093495A389B /* PBXContainerItemProxy */;
|
||||
};
|
||||
06264C7B60C120251C9B1488 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2.a";
|
||||
targetProxy = 1D371817285041810DA0112A /* PBXContainerItemProxy */;
|
||||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
17F645D86ABB423F50E12287 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testrendercopyex";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
410818042FC736AD221E1049 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testrendercopyex";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
408047A8720F482E471F6286 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testrendercopyex";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
7E6F2C356E69538C2D745325 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testrendercopyex";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
7CC167931CC81DA144C105A3 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
3545579A69D14F791CFD4CB2 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
642E19635F9A7EFC0FB53836 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
2F2F783E37D0711E060339EB /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
59E3072F380A3C4A325F130D /* Build configuration list for PBXNativeTarget "testrendercopyex" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
17F645D86ABB423F50E12287 /* Debug Universal */,
|
||||
410818042FC736AD221E1049 /* Debug Native */,
|
||||
408047A8720F482E471F6286 /* Release Universal */,
|
||||
7E6F2C356E69538C2D745325 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testrendercopyex" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
7CC167931CC81DA144C105A3 /* Debug Universal */,
|
||||
3545579A69D14F791CFD4CB2 /* Debug Native */,
|
||||
642E19635F9A7EFC0FB53836 /* Release Universal */,
|
||||
2F2F783E37D0711E060339EB /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
|
||||
};
|
||||
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
|
||||
}
|
|
@ -0,0 +1,517 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 45;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
3BDE770E382742407C9C7275 /* testrendertarget.c in Sources */ = {isa = PBXBuildFile; fileRef = 3D377B2F758301FB3EE53E1E /* testrendertarget.c */; };
|
||||
021E0C863FA852C728EA21A5 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 65E944291E9579D473B31994 /* AudioToolbox.framework */; };
|
||||
066B616A0F357B1350403119 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 622318275C5B0EF65EC61AFD /* AudioUnit.framework */; };
|
||||
13447C76577A1A13163437A4 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 07CC15F06B1E09D103A97BCF /* Cocoa.framework */; };
|
||||
15193EED718E39916A7C1483 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 02892BC34C873ECA4BD25839 /* CoreAudio.framework */; };
|
||||
2997079F67543FEE3875249B /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4B7F14644F8011D956DE2051 /* IOKit.framework */; };
|
||||
0A550BAF42E407DD6A3A1FD8 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 452655000EBA59503EF420A0 /* Carbon.framework */; };
|
||||
0F702DAE7E5868BC1FAD46D8 /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 308856AD13007A0847B90197 /* ForceFeedback.framework */; };
|
||||
19FA7BAA13ED683E72FB497A /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 30B350842E226D2F36C90784 /* CoreFoundation.framework */; };
|
||||
45C9492E2BA1789A72911841 /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0D7875D9299727716BC76549 /* OpenGL.framework */; };
|
||||
058D1D23740D3B8402CF1144 /* libSDL2main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 56767874260E1325074412DF /* libSDL2main.a */; };
|
||||
0B674F36010E61E9091C25CA /* libSDL2test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 482733D23FB6544709C50ED4 /* libSDL2test.a */; };
|
||||
28AA6DE4175D71F470BB420D /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 59D2230B5A0B1CDE43107EEF /* libSDL2.a */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
27766928021C033336E5032B /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 42D156B9499913F169B57314 /* SDL2main.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 58DC62993160374E09FF7AD6;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
0254080707BB2E0C50006C25 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 42D156B9499913F169B57314 /* SDL2main.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 0E7126A94A11494963D3548B;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
74BB51AB6C52216E68215FCE /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 134322956CCC6439154A3F0E /* SDL2test.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 1E1175156F97314C291323CB;
|
||||
remoteInfo = "libSDL2test.a";
|
||||
};
|
||||
4EDA545541D53C84205B592B /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 134322956CCC6439154A3F0E /* SDL2test.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 7CD70F5D43DA554D66287CFC;
|
||||
remoteInfo = "libSDL2test.a";
|
||||
};
|
||||
7C3932CF473920007BED14B6 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 72532B8E33703B3E07570B89 /* SDL2.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 07D004B11E733F1F0EA93105;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
396733C34AF07D6F3CBD30D2 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 72532B8E33703B3E07570B89 /* SDL2.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 58C10ED14175754444033E0E;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
3D377B2F758301FB3EE53E1E /* testrendertarget.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testrendertarget.c"; path = "../../../../../test/testrendertarget.c"; sourceTree = "<group>"; };
|
||||
65E944291E9579D473B31994 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioToolbox.framework"; path = "/System/Library/Frameworks/AudioToolbox.framework"; sourceTree = "<absolute>"; };
|
||||
622318275C5B0EF65EC61AFD /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioUnit.framework"; path = "/System/Library/Frameworks/AudioUnit.framework"; sourceTree = "<absolute>"; };
|
||||
07CC15F06B1E09D103A97BCF /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Cocoa.framework"; path = "/System/Library/Frameworks/Cocoa.framework"; sourceTree = "<absolute>"; };
|
||||
02892BC34C873ECA4BD25839 /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreAudio.framework"; path = "/System/Library/Frameworks/CoreAudio.framework"; sourceTree = "<absolute>"; };
|
||||
4B7F14644F8011D956DE2051 /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "IOKit.framework"; path = "/System/Library/Frameworks/IOKit.framework"; sourceTree = "<absolute>"; };
|
||||
452655000EBA59503EF420A0 /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Carbon.framework"; path = "/System/Library/Frameworks/Carbon.framework"; sourceTree = "<absolute>"; };
|
||||
308856AD13007A0847B90197 /* ForceFeedback.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "ForceFeedback.framework"; path = "/System/Library/Frameworks/ForceFeedback.framework"; sourceTree = "<absolute>"; };
|
||||
30B350842E226D2F36C90784 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreFoundation.framework"; path = "/System/Library/Frameworks/CoreFoundation.framework"; sourceTree = "<absolute>"; };
|
||||
0D7875D9299727716BC76549 /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "OpenGL.framework"; path = "/System/Library/Frameworks/OpenGL.framework"; sourceTree = "<absolute>"; };
|
||||
2C727B1464A05D8628A65406 /* testrendertarget */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = "testrendertarget"; path = "testrendertarget"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
42D156B9499913F169B57314 /* SDL2main.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2main.xcodeproj"; path = "../../SDL2main/SDL2main.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
134322956CCC6439154A3F0E /* SDL2test.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2test.xcodeproj"; path = "../../SDL2test/SDL2test.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
72532B8E33703B3E07570B89 /* SDL2.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2.xcodeproj"; path = "../../SDL2/SDL2.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
182F540A002D452A74910B72 /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
021E0C863FA852C728EA21A5 /* AudioToolbox.framework in Frameworks */,
|
||||
066B616A0F357B1350403119 /* AudioUnit.framework in Frameworks */,
|
||||
13447C76577A1A13163437A4 /* Cocoa.framework in Frameworks */,
|
||||
15193EED718E39916A7C1483 /* CoreAudio.framework in Frameworks */,
|
||||
2997079F67543FEE3875249B /* IOKit.framework in Frameworks */,
|
||||
0A550BAF42E407DD6A3A1FD8 /* Carbon.framework in Frameworks */,
|
||||
0F702DAE7E5868BC1FAD46D8 /* ForceFeedback.framework in Frameworks */,
|
||||
19FA7BAA13ED683E72FB497A /* CoreFoundation.framework in Frameworks */,
|
||||
45C9492E2BA1789A72911841 /* OpenGL.framework in Frameworks */,
|
||||
058D1D23740D3B8402CF1144 /* libSDL2main.a in Frameworks */,
|
||||
0B674F36010E61E9091C25CA /* libSDL2test.a in Frameworks */,
|
||||
28AA6DE4175D71F470BB420D /* libSDL2.a in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
0E822AD7464B6D584977305A /* testrendertarget */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
0E314AD426492160672949A2 /* test */,
|
||||
12CF719841E46665046F3E95 /* Frameworks */,
|
||||
1236373726C70594517914E9 /* Products */,
|
||||
593C7BBB72C50DE2211447BA /* Projects */,
|
||||
);
|
||||
name = "testrendertarget";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
0E314AD426492160672949A2 /* test */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
3D377B2F758301FB3EE53E1E /* testrendertarget.c */,
|
||||
);
|
||||
name = "test";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
12CF719841E46665046F3E95 /* Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
65E944291E9579D473B31994 /* AudioToolbox.framework */,
|
||||
622318275C5B0EF65EC61AFD /* AudioUnit.framework */,
|
||||
07CC15F06B1E09D103A97BCF /* Cocoa.framework */,
|
||||
02892BC34C873ECA4BD25839 /* CoreAudio.framework */,
|
||||
4B7F14644F8011D956DE2051 /* IOKit.framework */,
|
||||
452655000EBA59503EF420A0 /* Carbon.framework */,
|
||||
308856AD13007A0847B90197 /* ForceFeedback.framework */,
|
||||
30B350842E226D2F36C90784 /* CoreFoundation.framework */,
|
||||
0D7875D9299727716BC76549 /* OpenGL.framework */,
|
||||
);
|
||||
name = "Frameworks";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
1236373726C70594517914E9 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
2C727B1464A05D8628A65406 /* testrendertarget */,
|
||||
);
|
||||
name = "Products";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
593C7BBB72C50DE2211447BA /* Projects */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
42D156B9499913F169B57314 /* SDL2main.xcodeproj */,
|
||||
134322956CCC6439154A3F0E /* SDL2test.xcodeproj */,
|
||||
72532B8E33703B3E07570B89 /* SDL2.xcodeproj */,
|
||||
);
|
||||
name = "Projects";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
55097AE10B0B20BD6A302F28 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
56767874260E1325074412DF /* libSDL2main.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
6D5572D6669077FD15BB4226 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
482733D23FB6544709C50ED4 /* libSDL2test.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
4940288F4A214C0F2DA54FF7 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
59D2230B5A0B1CDE43107EEF /* libSDL2.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
65143E696F3D32C92E185878 /* testrendertarget */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 1FEF3F326E341A4274F33683 /* Build configuration list for PBXNativeTarget "testrendertarget" */;
|
||||
buildPhases = (
|
||||
004E1202473233B004CF3DBA /* Resources */,
|
||||
36BC22F924372FD8195A7A55 /* Sources */,
|
||||
182F540A002D452A74910B72 /* Frameworks */,
|
||||
9607AE3710C85E8F00CD1376 /* Postbuild */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
7C8910967C946E6201153F3D /* PBXTargetDependency */,
|
||||
1A252909129B03C27273049A /* PBXTargetDependency */,
|
||||
553675717DDC133503AC233F /* PBXTargetDependency */,
|
||||
);
|
||||
name = "testrendertarget";
|
||||
productInstallPath = "$(HOME)/bin";
|
||||
productName = "testrendertarget";
|
||||
productReference = 2C727B1464A05D8628A65406 /* testrendertarget */;
|
||||
productType = "com.apple.product-type.tool";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
08FB7793FE84155DC02AAC07 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
buildConfigurationList = 1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testrendertarget" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
hasScannedForEncodings = 1;
|
||||
mainGroup = 0E822AD7464B6D584977305A /* testrendertarget */;
|
||||
projectDirPath = "";
|
||||
projectReferences = (
|
||||
{
|
||||
ProductGroup = 55097AE10B0B20BD6A302F28 /* Products */;
|
||||
ProjectRef = 42D156B9499913F169B57314 /* SDL2main.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 6D5572D6669077FD15BB4226 /* Products */;
|
||||
ProjectRef = 134322956CCC6439154A3F0E /* SDL2test.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 4940288F4A214C0F2DA54FF7 /* Products */;
|
||||
ProjectRef = 72532B8E33703B3E07570B89 /* SDL2.xcodeproj */;
|
||||
},
|
||||
);
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
65143E696F3D32C92E185878 /* testrendertarget */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXReferenceProxy section */
|
||||
56767874260E1325074412DF /* libSDL2main.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2main.a";
|
||||
remoteRef = 27766928021C033336E5032B /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
482733D23FB6544709C50ED4 /* libSDL2test.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2test.a";
|
||||
remoteRef = 74BB51AB6C52216E68215FCE /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
59D2230B5A0B1CDE43107EEF /* libSDL2.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2.a";
|
||||
remoteRef = 7C3932CF473920007BED14B6 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
/* End PBXReferenceProxy section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
004E1202473233B004CF3DBA /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXShellScriptBuildPhase section */
|
||||
9607AE3710C85E8F00CD1376 /* Postbuild */ = {
|
||||
isa = PBXShellScriptBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
inputPaths = (
|
||||
);
|
||||
name = Postbuild;
|
||||
outputPaths = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
shellPath = /bin/sh;
|
||||
shellScript = "if [ \"${CONFIGURATION}\" = \"Debug Universal\" ]; then\nif [ ! -d \"./Build/Debug\" ]; then mkdir -p \"./Build/Debug\"; fi\ncp \"./../../../../../test/sample.bmp\" \"./Build/Debug/sample.bmp\"\ncp \"./../../../../../test/icon.bmp\" \"./Build/Debug/icon.bmp\"\nfi\nif [ \"${CONFIGURATION}\" = \"Debug Native\" ]; then\nif [ ! -d \"./Build/Debug\" ]; then mkdir -p \"./Build/Debug\"; fi\ncp \"./../../../../../test/sample.bmp\" \"./Build/Debug/sample.bmp\"\ncp \"./../../../../../test/icon.bmp\" \"./Build/Debug/icon.bmp\"\nfi\nif [ \"${CONFIGURATION}\" = \"Release Universal\" ]; then\nif [ ! -d \"./Build/Release\" ]; then mkdir -p \"./Build/Release\"; fi\ncp \"./../../../../../test/sample.bmp\" \"./Build/Release/sample.bmp\"\ncp \"./../../../../../test/icon.bmp\" \"./Build/Release/icon.bmp\"\nfi\nif [ \"${CONFIGURATION}\" = \"Release Native\" ]; then\nif [ ! -d \"./Build/Release\" ]; then mkdir -p \"./Build/Release\"; fi\ncp \"./../../../../../test/sample.bmp\" \"./Build/Release/sample.bmp\"\ncp \"./../../../../../test/icon.bmp\" \"./Build/Release/icon.bmp\"\nfi";
|
||||
};
|
||||
/* End PBXShellScriptBuildPhase section */
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
36BC22F924372FD8195A7A55 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
3BDE770E382742407C9C7275 /* testrendertarget.c in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXVariantGroup section */
|
||||
/* End PBXVariantGroup section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
7C8910967C946E6201153F3D /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2main.a";
|
||||
targetProxy = 0254080707BB2E0C50006C25 /* PBXContainerItemProxy */;
|
||||
};
|
||||
1A252909129B03C27273049A /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2test.a";
|
||||
targetProxy = 4EDA545541D53C84205B592B /* PBXContainerItemProxy */;
|
||||
};
|
||||
553675717DDC133503AC233F /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2.a";
|
||||
targetProxy = 396733C34AF07D6F3CBD30D2 /* PBXContainerItemProxy */;
|
||||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
720F444D1EE3087071D6296C /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testrendertarget";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
575813D33EF752B42F4B1FDE /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testrendertarget";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
0BD15545445C1F2558C66013 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testrendertarget";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
61DD770A5FF844034B705E59 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testrendertarget";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
77ED6AEC477D1A0B6DAD3671 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
507826301DEE793106690AF3 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
02F6008057A6739429672D3A /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
38E023561EA90EBE187269E5 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
1FEF3F326E341A4274F33683 /* Build configuration list for PBXNativeTarget "testrendertarget" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
720F444D1EE3087071D6296C /* Debug Universal */,
|
||||
575813D33EF752B42F4B1FDE /* Debug Native */,
|
||||
0BD15545445C1F2558C66013 /* Release Universal */,
|
||||
61DD770A5FF844034B705E59 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testrendertarget" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
77ED6AEC477D1A0B6DAD3671 /* Debug Universal */,
|
||||
507826301DEE793106690AF3 /* Debug Native */,
|
||||
02F6008057A6739429672D3A /* Release Universal */,
|
||||
38E023561EA90EBE187269E5 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
|
||||
};
|
||||
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
|
||||
}
|
474
premake/Xcode/Xcode3/tests/testresample/testresample.xcodeproj/project.pbxproj
Executable file
474
premake/Xcode/Xcode3/tests/testresample/testresample.xcodeproj/project.pbxproj
Executable file
|
@ -0,0 +1,474 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 45;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
76BF146D2915361C206609F5 /* testresample.c in Sources */ = {isa = PBXBuildFile; fileRef = 569306C5153013C8469245DA /* testresample.c */; };
|
||||
574A7ADD7E8D6164004D704D /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 74113BD1382E5DF879DF5182 /* AudioToolbox.framework */; };
|
||||
4779101031F434B778E65448 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0CA768C01B3407D961E44088 /* AudioUnit.framework */; };
|
||||
419215986BFB4528763B3B70 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6DBC704556B47843205405CA /* Cocoa.framework */; };
|
||||
35F37D307ECD6C7032882DAA /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4C5577F93D2C3BC657F133C4 /* CoreAudio.framework */; };
|
||||
0C9870DA331B3DB67AC874CE /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2B09143813350D77182A749B /* IOKit.framework */; };
|
||||
27DE098722F061A277AE67C1 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1238352C09A1295D46AF0F41 /* Carbon.framework */; };
|
||||
4CB3298851D12A615E5544B1 /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 68FA231E3B7D0CEE1331190D /* ForceFeedback.framework */; };
|
||||
530846550776061B08E50193 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 45D6167562824A0E6F3332F2 /* CoreFoundation.framework */; };
|
||||
088C4D0339B466941438209F /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 62094A9101C3606448CD26CB /* OpenGL.framework */; };
|
||||
5D985F333D3E54D0559F53F0 /* libSDL2main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 74FE741E090E329A57072A76 /* libSDL2main.a */; };
|
||||
7E991A6635F84F1C4A4B12A5 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 36C16BB401BA7F296E737694 /* libSDL2.a */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
00C73F06453266556CA1778F /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 280C41556E9D2C0915937CD8 /* SDL2main.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 58DC62993160374E09FF7AD6;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
568F66C878FE1FB55D4657C9 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 280C41556E9D2C0915937CD8 /* SDL2main.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 0E7126A94A11494963D3548B;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
6C7E7391621159C07402679C /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 57F740F5173813BD71B0085B /* SDL2.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 07D004B11E733F1F0EA93105;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
54654C1A475E706257ED1B6D /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 57F740F5173813BD71B0085B /* SDL2.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 58C10ED14175754444033E0E;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
569306C5153013C8469245DA /* testresample.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testresample.c"; path = "../../../../../test/testresample.c"; sourceTree = "<group>"; };
|
||||
74113BD1382E5DF879DF5182 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioToolbox.framework"; path = "/System/Library/Frameworks/AudioToolbox.framework"; sourceTree = "<absolute>"; };
|
||||
0CA768C01B3407D961E44088 /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioUnit.framework"; path = "/System/Library/Frameworks/AudioUnit.framework"; sourceTree = "<absolute>"; };
|
||||
6DBC704556B47843205405CA /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Cocoa.framework"; path = "/System/Library/Frameworks/Cocoa.framework"; sourceTree = "<absolute>"; };
|
||||
4C5577F93D2C3BC657F133C4 /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreAudio.framework"; path = "/System/Library/Frameworks/CoreAudio.framework"; sourceTree = "<absolute>"; };
|
||||
2B09143813350D77182A749B /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "IOKit.framework"; path = "/System/Library/Frameworks/IOKit.framework"; sourceTree = "<absolute>"; };
|
||||
1238352C09A1295D46AF0F41 /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Carbon.framework"; path = "/System/Library/Frameworks/Carbon.framework"; sourceTree = "<absolute>"; };
|
||||
68FA231E3B7D0CEE1331190D /* ForceFeedback.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "ForceFeedback.framework"; path = "/System/Library/Frameworks/ForceFeedback.framework"; sourceTree = "<absolute>"; };
|
||||
45D6167562824A0E6F3332F2 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreFoundation.framework"; path = "/System/Library/Frameworks/CoreFoundation.framework"; sourceTree = "<absolute>"; };
|
||||
62094A9101C3606448CD26CB /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "OpenGL.framework"; path = "/System/Library/Frameworks/OpenGL.framework"; sourceTree = "<absolute>"; };
|
||||
4D3A34FC368C51A554200429 /* testresample */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = "testresample"; path = "testresample"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
280C41556E9D2C0915937CD8 /* SDL2main.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2main.xcodeproj"; path = "../../SDL2main/SDL2main.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
57F740F5173813BD71B0085B /* SDL2.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2.xcodeproj"; path = "../../SDL2/SDL2.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
0C6D72FC0160642278964596 /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
574A7ADD7E8D6164004D704D /* AudioToolbox.framework in Frameworks */,
|
||||
4779101031F434B778E65448 /* AudioUnit.framework in Frameworks */,
|
||||
419215986BFB4528763B3B70 /* Cocoa.framework in Frameworks */,
|
||||
35F37D307ECD6C7032882DAA /* CoreAudio.framework in Frameworks */,
|
||||
0C9870DA331B3DB67AC874CE /* IOKit.framework in Frameworks */,
|
||||
27DE098722F061A277AE67C1 /* Carbon.framework in Frameworks */,
|
||||
4CB3298851D12A615E5544B1 /* ForceFeedback.framework in Frameworks */,
|
||||
530846550776061B08E50193 /* CoreFoundation.framework in Frameworks */,
|
||||
088C4D0339B466941438209F /* OpenGL.framework in Frameworks */,
|
||||
5D985F333D3E54D0559F53F0 /* libSDL2main.a in Frameworks */,
|
||||
7E991A6635F84F1C4A4B12A5 /* libSDL2.a in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
38433A46021F7BB00E9C34F4 /* testresample */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
22107488396D576354857AD9 /* test */,
|
||||
413E0EE56103220D38B23A54 /* Frameworks */,
|
||||
546220AC13A77568176F35DB /* Products */,
|
||||
6B500C6028EF004738402E7B /* Projects */,
|
||||
);
|
||||
name = "testresample";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
22107488396D576354857AD9 /* test */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
569306C5153013C8469245DA /* testresample.c */,
|
||||
);
|
||||
name = "test";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
413E0EE56103220D38B23A54 /* Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
74113BD1382E5DF879DF5182 /* AudioToolbox.framework */,
|
||||
0CA768C01B3407D961E44088 /* AudioUnit.framework */,
|
||||
6DBC704556B47843205405CA /* Cocoa.framework */,
|
||||
4C5577F93D2C3BC657F133C4 /* CoreAudio.framework */,
|
||||
2B09143813350D77182A749B /* IOKit.framework */,
|
||||
1238352C09A1295D46AF0F41 /* Carbon.framework */,
|
||||
68FA231E3B7D0CEE1331190D /* ForceFeedback.framework */,
|
||||
45D6167562824A0E6F3332F2 /* CoreFoundation.framework */,
|
||||
62094A9101C3606448CD26CB /* OpenGL.framework */,
|
||||
);
|
||||
name = "Frameworks";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
546220AC13A77568176F35DB /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
4D3A34FC368C51A554200429 /* testresample */,
|
||||
);
|
||||
name = "Products";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
6B500C6028EF004738402E7B /* Projects */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
280C41556E9D2C0915937CD8 /* SDL2main.xcodeproj */,
|
||||
57F740F5173813BD71B0085B /* SDL2.xcodeproj */,
|
||||
);
|
||||
name = "Projects";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
6D3E3A2E33280DEE1ECC645E /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
74FE741E090E329A57072A76 /* libSDL2main.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
5D6E6E2804B31C6E253762F3 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
36C16BB401BA7F296E737694 /* libSDL2.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
252D5F4F68CC3DDF07376025 /* testresample */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 16593BC10B1F2BC613B95D1B /* Build configuration list for PBXNativeTarget "testresample" */;
|
||||
buildPhases = (
|
||||
55394CA4557C63172A972246 /* Resources */,
|
||||
3E722EBA7478798B375B4376 /* Sources */,
|
||||
0C6D72FC0160642278964596 /* Frameworks */,
|
||||
9607AE3710C85E8F00CD1376 /* Postbuild */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
7D476F07532F53464DEC5572 /* PBXTargetDependency */,
|
||||
1D554DA605B14CC0617213FC /* PBXTargetDependency */,
|
||||
);
|
||||
name = "testresample";
|
||||
productInstallPath = "$(HOME)/bin";
|
||||
productName = "testresample";
|
||||
productReference = 4D3A34FC368C51A554200429 /* testresample */;
|
||||
productType = "com.apple.product-type.tool";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
08FB7793FE84155DC02AAC07 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
buildConfigurationList = 1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testresample" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
hasScannedForEncodings = 1;
|
||||
mainGroup = 38433A46021F7BB00E9C34F4 /* testresample */;
|
||||
projectDirPath = "";
|
||||
projectReferences = (
|
||||
{
|
||||
ProductGroup = 6D3E3A2E33280DEE1ECC645E /* Products */;
|
||||
ProjectRef = 280C41556E9D2C0915937CD8 /* SDL2main.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 5D6E6E2804B31C6E253762F3 /* Products */;
|
||||
ProjectRef = 57F740F5173813BD71B0085B /* SDL2.xcodeproj */;
|
||||
},
|
||||
);
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
252D5F4F68CC3DDF07376025 /* testresample */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXReferenceProxy section */
|
||||
74FE741E090E329A57072A76 /* libSDL2main.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2main.a";
|
||||
remoteRef = 00C73F06453266556CA1778F /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
36C16BB401BA7F296E737694 /* libSDL2.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2.a";
|
||||
remoteRef = 6C7E7391621159C07402679C /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
/* End PBXReferenceProxy section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
55394CA4557C63172A972246 /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXShellScriptBuildPhase section */
|
||||
9607AE3710C85E8F00CD1376 /* Postbuild */ = {
|
||||
isa = PBXShellScriptBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
inputPaths = (
|
||||
);
|
||||
name = Postbuild;
|
||||
outputPaths = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
shellPath = /bin/sh;
|
||||
shellScript = "if [ \"${CONFIGURATION}\" = \"Debug Universal\" ]; then\nif [ ! -d \"./Build/Debug\" ]; then mkdir -p \"./Build/Debug\"; fi\ncp \"./../../../../../test/sample.wav\" \"./Build/Debug/sample.wav\"\nfi\nif [ \"${CONFIGURATION}\" = \"Debug Native\" ]; then\nif [ ! -d \"./Build/Debug\" ]; then mkdir -p \"./Build/Debug\"; fi\ncp \"./../../../../../test/sample.wav\" \"./Build/Debug/sample.wav\"\nfi\nif [ \"${CONFIGURATION}\" = \"Release Universal\" ]; then\nif [ ! -d \"./Build/Release\" ]; then mkdir -p \"./Build/Release\"; fi\ncp \"./../../../../../test/sample.wav\" \"./Build/Release/sample.wav\"\nfi\nif [ \"${CONFIGURATION}\" = \"Release Native\" ]; then\nif [ ! -d \"./Build/Release\" ]; then mkdir -p \"./Build/Release\"; fi\ncp \"./../../../../../test/sample.wav\" \"./Build/Release/sample.wav\"\nfi";
|
||||
};
|
||||
/* End PBXShellScriptBuildPhase section */
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
3E722EBA7478798B375B4376 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
76BF146D2915361C206609F5 /* testresample.c in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXVariantGroup section */
|
||||
/* End PBXVariantGroup section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
7D476F07532F53464DEC5572 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2main.a";
|
||||
targetProxy = 568F66C878FE1FB55D4657C9 /* PBXContainerItemProxy */;
|
||||
};
|
||||
1D554DA605B14CC0617213FC /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2.a";
|
||||
targetProxy = 54654C1A475E706257ED1B6D /* PBXContainerItemProxy */;
|
||||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
2BCC04AE3EA42FB868BE3848 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testresample";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
47613B2D450016BD08C82BD2 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testresample";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
08F137D45C1375BC0FF8049B /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testresample";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
09E6797930703AAC01A57EA4 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testresample";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
0CB700C516FC322D48077012 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
061009CA5EC043147F7A5963 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
6A5D37096F305DD241554511 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
6B621C2B68195FF17E896D24 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
16593BC10B1F2BC613B95D1B /* Build configuration list for PBXNativeTarget "testresample" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
2BCC04AE3EA42FB868BE3848 /* Debug Universal */,
|
||||
47613B2D450016BD08C82BD2 /* Debug Native */,
|
||||
08F137D45C1375BC0FF8049B /* Release Universal */,
|
||||
09E6797930703AAC01A57EA4 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testresample" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
0CB700C516FC322D48077012 /* Debug Universal */,
|
||||
061009CA5EC043147F7A5963 /* Debug Native */,
|
||||
6A5D37096F305DD241554511 /* Release Universal */,
|
||||
6B621C2B68195FF17E896D24 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
|
||||
};
|
||||
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
|
||||
}
|
457
premake/Xcode/Xcode3/tests/testrumble/testrumble.xcodeproj/project.pbxproj
Executable file
457
premake/Xcode/Xcode3/tests/testrumble/testrumble.xcodeproj/project.pbxproj
Executable file
|
@ -0,0 +1,457 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 45;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
124717442E7B35AD1B5650AA /* testrumble.c in Sources */ = {isa = PBXBuildFile; fileRef = 2DFA268370C4769A2F5C6FBF /* testrumble.c */; };
|
||||
61B829E932DA38657B423F6F /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 69D74DF941656C4010E27051 /* AudioToolbox.framework */; };
|
||||
1B80799E29AE683A561D2DB4 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 311E40904AC82FEF1E0024D6 /* AudioUnit.framework */; };
|
||||
11EA2EBD273E1774610E1D63 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 35C95AF30CDE6D6F180D121E /* Cocoa.framework */; };
|
||||
7BE64BB3746B20D13298487B /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5E802D674BE67D6516DE6B3F /* CoreAudio.framework */; };
|
||||
23CF713628841182291540AB /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 259850524A7B72D70AC5404B /* IOKit.framework */; };
|
||||
56A91EB248F34A240B320DF0 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 54A81435574F3DD44B3B0EE2 /* Carbon.framework */; };
|
||||
428016FB577550EB01B05486 /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2BCC0FAB5C6A6FEC10547B1D /* ForceFeedback.framework */; };
|
||||
418474DD110F17102210799B /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4C0B68346EA0611D783518C1 /* CoreFoundation.framework */; };
|
||||
25A83C2D5A4F2F0125416A3E /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 68D84A2617487AB2763930C2 /* OpenGL.framework */; };
|
||||
1812540F49050067143E0FC1 /* libSDL2main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 24582C823A926F21777B61F6 /* libSDL2main.a */; };
|
||||
2F3E1E6239A7419D35267477 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 44CF004538894E25185D1A41 /* libSDL2.a */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
6E65490B7B3A5975262822EF /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 6E17506B5A510B7674EE5296 /* SDL2main.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 58DC62993160374E09FF7AD6;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
088E3B4F509B188B0A18328D /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 6E17506B5A510B7674EE5296 /* SDL2main.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 0E7126A94A11494963D3548B;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
700F1857105810F014265B7D /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 720A00A215EA428D644D3680 /* SDL2.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 07D004B11E733F1F0EA93105;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
05540490337C51A5407A38F3 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 720A00A215EA428D644D3680 /* SDL2.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 58C10ED14175754444033E0E;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
2DFA268370C4769A2F5C6FBF /* testrumble.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testrumble.c"; path = "../../../../../test/testrumble.c"; sourceTree = "<group>"; };
|
||||
69D74DF941656C4010E27051 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioToolbox.framework"; path = "/System/Library/Frameworks/AudioToolbox.framework"; sourceTree = "<absolute>"; };
|
||||
311E40904AC82FEF1E0024D6 /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioUnit.framework"; path = "/System/Library/Frameworks/AudioUnit.framework"; sourceTree = "<absolute>"; };
|
||||
35C95AF30CDE6D6F180D121E /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Cocoa.framework"; path = "/System/Library/Frameworks/Cocoa.framework"; sourceTree = "<absolute>"; };
|
||||
5E802D674BE67D6516DE6B3F /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreAudio.framework"; path = "/System/Library/Frameworks/CoreAudio.framework"; sourceTree = "<absolute>"; };
|
||||
259850524A7B72D70AC5404B /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "IOKit.framework"; path = "/System/Library/Frameworks/IOKit.framework"; sourceTree = "<absolute>"; };
|
||||
54A81435574F3DD44B3B0EE2 /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Carbon.framework"; path = "/System/Library/Frameworks/Carbon.framework"; sourceTree = "<absolute>"; };
|
||||
2BCC0FAB5C6A6FEC10547B1D /* ForceFeedback.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "ForceFeedback.framework"; path = "/System/Library/Frameworks/ForceFeedback.framework"; sourceTree = "<absolute>"; };
|
||||
4C0B68346EA0611D783518C1 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreFoundation.framework"; path = "/System/Library/Frameworks/CoreFoundation.framework"; sourceTree = "<absolute>"; };
|
||||
68D84A2617487AB2763930C2 /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "OpenGL.framework"; path = "/System/Library/Frameworks/OpenGL.framework"; sourceTree = "<absolute>"; };
|
||||
42820EA2474110E017AC3089 /* testrumble */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = "testrumble"; path = "testrumble"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
6E17506B5A510B7674EE5296 /* SDL2main.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2main.xcodeproj"; path = "../../SDL2main/SDL2main.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
720A00A215EA428D644D3680 /* SDL2.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2.xcodeproj"; path = "../../SDL2/SDL2.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
20B41A2F07B5262F6DAE7A4A /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
61B829E932DA38657B423F6F /* AudioToolbox.framework in Frameworks */,
|
||||
1B80799E29AE683A561D2DB4 /* AudioUnit.framework in Frameworks */,
|
||||
11EA2EBD273E1774610E1D63 /* Cocoa.framework in Frameworks */,
|
||||
7BE64BB3746B20D13298487B /* CoreAudio.framework in Frameworks */,
|
||||
23CF713628841182291540AB /* IOKit.framework in Frameworks */,
|
||||
56A91EB248F34A240B320DF0 /* Carbon.framework in Frameworks */,
|
||||
428016FB577550EB01B05486 /* ForceFeedback.framework in Frameworks */,
|
||||
418474DD110F17102210799B /* CoreFoundation.framework in Frameworks */,
|
||||
25A83C2D5A4F2F0125416A3E /* OpenGL.framework in Frameworks */,
|
||||
1812540F49050067143E0FC1 /* libSDL2main.a in Frameworks */,
|
||||
2F3E1E6239A7419D35267477 /* libSDL2.a in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
794130C91C19308D27BE6658 /* testrumble */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
1DA903B35E6944BC40C2237C /* test */,
|
||||
5E6D7FF211280064452F49F0 /* Frameworks */,
|
||||
3B4C21335B6D0F6F411E4001 /* Products */,
|
||||
30BA1FFF51161B0E3FC0130B /* Projects */,
|
||||
);
|
||||
name = "testrumble";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
1DA903B35E6944BC40C2237C /* test */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
2DFA268370C4769A2F5C6FBF /* testrumble.c */,
|
||||
);
|
||||
name = "test";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
5E6D7FF211280064452F49F0 /* Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
69D74DF941656C4010E27051 /* AudioToolbox.framework */,
|
||||
311E40904AC82FEF1E0024D6 /* AudioUnit.framework */,
|
||||
35C95AF30CDE6D6F180D121E /* Cocoa.framework */,
|
||||
5E802D674BE67D6516DE6B3F /* CoreAudio.framework */,
|
||||
259850524A7B72D70AC5404B /* IOKit.framework */,
|
||||
54A81435574F3DD44B3B0EE2 /* Carbon.framework */,
|
||||
2BCC0FAB5C6A6FEC10547B1D /* ForceFeedback.framework */,
|
||||
4C0B68346EA0611D783518C1 /* CoreFoundation.framework */,
|
||||
68D84A2617487AB2763930C2 /* OpenGL.framework */,
|
||||
);
|
||||
name = "Frameworks";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
3B4C21335B6D0F6F411E4001 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
42820EA2474110E017AC3089 /* testrumble */,
|
||||
);
|
||||
name = "Products";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
30BA1FFF51161B0E3FC0130B /* Projects */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
6E17506B5A510B7674EE5296 /* SDL2main.xcodeproj */,
|
||||
720A00A215EA428D644D3680 /* SDL2.xcodeproj */,
|
||||
);
|
||||
name = "Projects";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
440676EE151B3F9F60F84413 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
24582C823A926F21777B61F6 /* libSDL2main.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
07E146715659099073561E9D /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
44CF004538894E25185D1A41 /* libSDL2.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
0A26695A3BA775F1544E573C /* testrumble */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 3209004474375DDF74242210 /* Build configuration list for PBXNativeTarget "testrumble" */;
|
||||
buildPhases = (
|
||||
525E1C4500F9782E333F6D5C /* Resources */,
|
||||
464C671A0921752D69745B41 /* Sources */,
|
||||
20B41A2F07B5262F6DAE7A4A /* Frameworks */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
6C6169043D7162D877D74ED8 /* PBXTargetDependency */,
|
||||
0EA714145C373CC53B724481 /* PBXTargetDependency */,
|
||||
);
|
||||
name = "testrumble";
|
||||
productInstallPath = "$(HOME)/bin";
|
||||
productName = "testrumble";
|
||||
productReference = 42820EA2474110E017AC3089 /* testrumble */;
|
||||
productType = "com.apple.product-type.tool";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
08FB7793FE84155DC02AAC07 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
buildConfigurationList = 1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testrumble" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
hasScannedForEncodings = 1;
|
||||
mainGroup = 794130C91C19308D27BE6658 /* testrumble */;
|
||||
projectDirPath = "";
|
||||
projectReferences = (
|
||||
{
|
||||
ProductGroup = 440676EE151B3F9F60F84413 /* Products */;
|
||||
ProjectRef = 6E17506B5A510B7674EE5296 /* SDL2main.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 07E146715659099073561E9D /* Products */;
|
||||
ProjectRef = 720A00A215EA428D644D3680 /* SDL2.xcodeproj */;
|
||||
},
|
||||
);
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
0A26695A3BA775F1544E573C /* testrumble */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXReferenceProxy section */
|
||||
24582C823A926F21777B61F6 /* libSDL2main.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2main.a";
|
||||
remoteRef = 6E65490B7B3A5975262822EF /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
44CF004538894E25185D1A41 /* libSDL2.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2.a";
|
||||
remoteRef = 700F1857105810F014265B7D /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
/* End PBXReferenceProxy section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
525E1C4500F9782E333F6D5C /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
464C671A0921752D69745B41 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
124717442E7B35AD1B5650AA /* testrumble.c in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXVariantGroup section */
|
||||
/* End PBXVariantGroup section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
6C6169043D7162D877D74ED8 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2main.a";
|
||||
targetProxy = 088E3B4F509B188B0A18328D /* PBXContainerItemProxy */;
|
||||
};
|
||||
0EA714145C373CC53B724481 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2.a";
|
||||
targetProxy = 05540490337C51A5407A38F3 /* PBXContainerItemProxy */;
|
||||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
6B782B6457187E425846665A /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testrumble";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
2EC265311617661F38B64480 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testrumble";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
04C401E9721021A577592F56 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testrumble";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
453C130F733140BF75E919C3 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testrumble";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
31B864D7174418902FAF48D9 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
3FA1669563B47E9C34373217 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
744E499246E639F1161F0573 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
6AB0796B790B7BFD4BF8251B /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
3209004474375DDF74242210 /* Build configuration list for PBXNativeTarget "testrumble" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
6B782B6457187E425846665A /* Debug Universal */,
|
||||
2EC265311617661F38B64480 /* Debug Native */,
|
||||
04C401E9721021A577592F56 /* Release Universal */,
|
||||
453C130F733140BF75E919C3 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testrumble" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
31B864D7174418902FAF48D9 /* Debug Universal */,
|
||||
3FA1669563B47E9C34373217 /* Debug Native */,
|
||||
744E499246E639F1161F0573 /* Release Universal */,
|
||||
6AB0796B790B7BFD4BF8251B /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
|
||||
};
|
||||
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
|
||||
}
|
517
premake/Xcode/Xcode3/tests/testscale/testscale.xcodeproj/project.pbxproj
Executable file
517
premake/Xcode/Xcode3/tests/testscale/testscale.xcodeproj/project.pbxproj
Executable file
|
@ -0,0 +1,517 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 45;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
5C7E74D2428F5D0E5D255890 /* testscale.c in Sources */ = {isa = PBXBuildFile; fileRef = 0FD502B61D5F67B264693032 /* testscale.c */; };
|
||||
008274C95424081325DA48B0 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1FF4030D762D287614DB4655 /* AudioToolbox.framework */; };
|
||||
71D766A1037F09BE4526683F /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 370C097F7251551E65CE6817 /* AudioUnit.framework */; };
|
||||
1D58080302756DC939006C33 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DB572FF7F6B6C1B14CE00D6 /* Cocoa.framework */; };
|
||||
259C326672FE134A64C57099 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 355F15261C243D04044C2710 /* CoreAudio.framework */; };
|
||||
03B04B0970D35360661A3815 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 628E6EE669DA090270846F6F /* IOKit.framework */; };
|
||||
28F11C2C3DA535A173D823ED /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F7D0CDB3AC832BF221A6264 /* Carbon.framework */; };
|
||||
153F06D869C50ADC1A3D574D /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 41803CB46328617360EB7126 /* ForceFeedback.framework */; };
|
||||
51D03EF609265DE579AD09E6 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3D2C18455CC51ECC78C55220 /* CoreFoundation.framework */; };
|
||||
47B33B7877E42FF4459D73DF /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7F5C040571280FD63B6900AA /* OpenGL.framework */; };
|
||||
7D61189049B1252270922C8B /* libSDL2main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 0BC5668C2655352934CE638D /* libSDL2main.a */; };
|
||||
76EE0DCB338C4C126C1918E2 /* libSDL2test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 3F1704E222587110735D0416 /* libSDL2test.a */; };
|
||||
50D176EF72035A626E550F7E /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1F2334F36CCA6E620E7E104D /* libSDL2.a */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
65CC46BD4FDF3CCC0AE631B2 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 17F90FFD39896CA2220E62DA /* SDL2main.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 58DC62993160374E09FF7AD6;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
5478435D3A932BF85FEF5978 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 17F90FFD39896CA2220E62DA /* SDL2main.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 0E7126A94A11494963D3548B;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
2CAF4B5D7DDE7D0364B5662E /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 67B07D395C536E7D041136EA /* SDL2test.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 1E1175156F97314C291323CB;
|
||||
remoteInfo = "libSDL2test.a";
|
||||
};
|
||||
695812884A4E4E67742C271C /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 67B07D395C536E7D041136EA /* SDL2test.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 7CD70F5D43DA554D66287CFC;
|
||||
remoteInfo = "libSDL2test.a";
|
||||
};
|
||||
03973B8B23E47C71118E0561 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 319B4AC355290E8B7988714D /* SDL2.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 07D004B11E733F1F0EA93105;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
614474296E7608606F001FE6 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 319B4AC355290E8B7988714D /* SDL2.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 58C10ED14175754444033E0E;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
0FD502B61D5F67B264693032 /* testscale.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testscale.c"; path = "../../../../../test/testscale.c"; sourceTree = "<group>"; };
|
||||
1FF4030D762D287614DB4655 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioToolbox.framework"; path = "/System/Library/Frameworks/AudioToolbox.framework"; sourceTree = "<absolute>"; };
|
||||
370C097F7251551E65CE6817 /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioUnit.framework"; path = "/System/Library/Frameworks/AudioUnit.framework"; sourceTree = "<absolute>"; };
|
||||
3DB572FF7F6B6C1B14CE00D6 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Cocoa.framework"; path = "/System/Library/Frameworks/Cocoa.framework"; sourceTree = "<absolute>"; };
|
||||
355F15261C243D04044C2710 /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreAudio.framework"; path = "/System/Library/Frameworks/CoreAudio.framework"; sourceTree = "<absolute>"; };
|
||||
628E6EE669DA090270846F6F /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "IOKit.framework"; path = "/System/Library/Frameworks/IOKit.framework"; sourceTree = "<absolute>"; };
|
||||
7F7D0CDB3AC832BF221A6264 /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Carbon.framework"; path = "/System/Library/Frameworks/Carbon.framework"; sourceTree = "<absolute>"; };
|
||||
41803CB46328617360EB7126 /* ForceFeedback.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "ForceFeedback.framework"; path = "/System/Library/Frameworks/ForceFeedback.framework"; sourceTree = "<absolute>"; };
|
||||
3D2C18455CC51ECC78C55220 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreFoundation.framework"; path = "/System/Library/Frameworks/CoreFoundation.framework"; sourceTree = "<absolute>"; };
|
||||
7F5C040571280FD63B6900AA /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "OpenGL.framework"; path = "/System/Library/Frameworks/OpenGL.framework"; sourceTree = "<absolute>"; };
|
||||
1CDD1F2D74ED225651426E4F /* testscale */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = "testscale"; path = "testscale"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
17F90FFD39896CA2220E62DA /* SDL2main.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2main.xcodeproj"; path = "../../SDL2main/SDL2main.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
67B07D395C536E7D041136EA /* SDL2test.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2test.xcodeproj"; path = "../../SDL2test/SDL2test.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
319B4AC355290E8B7988714D /* SDL2.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2.xcodeproj"; path = "../../SDL2/SDL2.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
42DC02D65D8203E2001E529F /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
008274C95424081325DA48B0 /* AudioToolbox.framework in Frameworks */,
|
||||
71D766A1037F09BE4526683F /* AudioUnit.framework in Frameworks */,
|
||||
1D58080302756DC939006C33 /* Cocoa.framework in Frameworks */,
|
||||
259C326672FE134A64C57099 /* CoreAudio.framework in Frameworks */,
|
||||
03B04B0970D35360661A3815 /* IOKit.framework in Frameworks */,
|
||||
28F11C2C3DA535A173D823ED /* Carbon.framework in Frameworks */,
|
||||
153F06D869C50ADC1A3D574D /* ForceFeedback.framework in Frameworks */,
|
||||
51D03EF609265DE579AD09E6 /* CoreFoundation.framework in Frameworks */,
|
||||
47B33B7877E42FF4459D73DF /* OpenGL.framework in Frameworks */,
|
||||
7D61189049B1252270922C8B /* libSDL2main.a in Frameworks */,
|
||||
76EE0DCB338C4C126C1918E2 /* libSDL2test.a in Frameworks */,
|
||||
50D176EF72035A626E550F7E /* libSDL2.a in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
2D9A6CE93F294BE420CB2D03 /* testscale */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
5A2617995C0A195D51F46D9B /* test */,
|
||||
62C711C941A76D5919A5331A /* Frameworks */,
|
||||
45C13CF5123C598A0ECC1CD4 /* Products */,
|
||||
568416000E5979CE4A9B07B5 /* Projects */,
|
||||
);
|
||||
name = "testscale";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
5A2617995C0A195D51F46D9B /* test */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
0FD502B61D5F67B264693032 /* testscale.c */,
|
||||
);
|
||||
name = "test";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
62C711C941A76D5919A5331A /* Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
1FF4030D762D287614DB4655 /* AudioToolbox.framework */,
|
||||
370C097F7251551E65CE6817 /* AudioUnit.framework */,
|
||||
3DB572FF7F6B6C1B14CE00D6 /* Cocoa.framework */,
|
||||
355F15261C243D04044C2710 /* CoreAudio.framework */,
|
||||
628E6EE669DA090270846F6F /* IOKit.framework */,
|
||||
7F7D0CDB3AC832BF221A6264 /* Carbon.framework */,
|
||||
41803CB46328617360EB7126 /* ForceFeedback.framework */,
|
||||
3D2C18455CC51ECC78C55220 /* CoreFoundation.framework */,
|
||||
7F5C040571280FD63B6900AA /* OpenGL.framework */,
|
||||
);
|
||||
name = "Frameworks";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
45C13CF5123C598A0ECC1CD4 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
1CDD1F2D74ED225651426E4F /* testscale */,
|
||||
);
|
||||
name = "Products";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
568416000E5979CE4A9B07B5 /* Projects */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
17F90FFD39896CA2220E62DA /* SDL2main.xcodeproj */,
|
||||
67B07D395C536E7D041136EA /* SDL2test.xcodeproj */,
|
||||
319B4AC355290E8B7988714D /* SDL2.xcodeproj */,
|
||||
);
|
||||
name = "Projects";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
094C0168673D01ED02DA6559 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
0BC5668C2655352934CE638D /* libSDL2main.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
43BF4F6033DB2F443E3B2EB0 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
3F1704E222587110735D0416 /* libSDL2test.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
2D3735827E174E0A1E0E426D /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
1F2334F36CCA6E620E7E104D /* libSDL2.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
0EC34CFC45CC683D7EBB5540 /* testscale */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 25AD405002C3531D24703F82 /* Build configuration list for PBXNativeTarget "testscale" */;
|
||||
buildPhases = (
|
||||
199A59146CA641AA22B930A3 /* Resources */,
|
||||
208462FC4C8275FF6B437D23 /* Sources */,
|
||||
42DC02D65D8203E2001E529F /* Frameworks */,
|
||||
9607AE3710C85E8F00CD1376 /* Postbuild */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
6C2E5EFD6B391AFE29F74168 /* PBXTargetDependency */,
|
||||
40A9274C023D14501F1E0B09 /* PBXTargetDependency */,
|
||||
739B03B657397C6C3BBA4B10 /* PBXTargetDependency */,
|
||||
);
|
||||
name = "testscale";
|
||||
productInstallPath = "$(HOME)/bin";
|
||||
productName = "testscale";
|
||||
productReference = 1CDD1F2D74ED225651426E4F /* testscale */;
|
||||
productType = "com.apple.product-type.tool";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
08FB7793FE84155DC02AAC07 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
buildConfigurationList = 1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testscale" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
hasScannedForEncodings = 1;
|
||||
mainGroup = 2D9A6CE93F294BE420CB2D03 /* testscale */;
|
||||
projectDirPath = "";
|
||||
projectReferences = (
|
||||
{
|
||||
ProductGroup = 094C0168673D01ED02DA6559 /* Products */;
|
||||
ProjectRef = 17F90FFD39896CA2220E62DA /* SDL2main.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 43BF4F6033DB2F443E3B2EB0 /* Products */;
|
||||
ProjectRef = 67B07D395C536E7D041136EA /* SDL2test.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 2D3735827E174E0A1E0E426D /* Products */;
|
||||
ProjectRef = 319B4AC355290E8B7988714D /* SDL2.xcodeproj */;
|
||||
},
|
||||
);
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
0EC34CFC45CC683D7EBB5540 /* testscale */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXReferenceProxy section */
|
||||
0BC5668C2655352934CE638D /* libSDL2main.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2main.a";
|
||||
remoteRef = 65CC46BD4FDF3CCC0AE631B2 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
3F1704E222587110735D0416 /* libSDL2test.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2test.a";
|
||||
remoteRef = 2CAF4B5D7DDE7D0364B5662E /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
1F2334F36CCA6E620E7E104D /* libSDL2.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2.a";
|
||||
remoteRef = 03973B8B23E47C71118E0561 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
/* End PBXReferenceProxy section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
199A59146CA641AA22B930A3 /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXShellScriptBuildPhase section */
|
||||
9607AE3710C85E8F00CD1376 /* Postbuild */ = {
|
||||
isa = PBXShellScriptBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
inputPaths = (
|
||||
);
|
||||
name = Postbuild;
|
||||
outputPaths = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
shellPath = /bin/sh;
|
||||
shellScript = "if [ \"${CONFIGURATION}\" = \"Debug Universal\" ]; then\nif [ ! -d \"./Build/Debug\" ]; then mkdir -p \"./Build/Debug\"; fi\ncp \"./../../../../../test/sample.bmp\" \"./Build/Debug/sample.bmp\"\ncp \"./../../../../../test/icon.bmp\" \"./Build/Debug/icon.bmp\"\nfi\nif [ \"${CONFIGURATION}\" = \"Debug Native\" ]; then\nif [ ! -d \"./Build/Debug\" ]; then mkdir -p \"./Build/Debug\"; fi\ncp \"./../../../../../test/sample.bmp\" \"./Build/Debug/sample.bmp\"\ncp \"./../../../../../test/icon.bmp\" \"./Build/Debug/icon.bmp\"\nfi\nif [ \"${CONFIGURATION}\" = \"Release Universal\" ]; then\nif [ ! -d \"./Build/Release\" ]; then mkdir -p \"./Build/Release\"; fi\ncp \"./../../../../../test/sample.bmp\" \"./Build/Release/sample.bmp\"\ncp \"./../../../../../test/icon.bmp\" \"./Build/Release/icon.bmp\"\nfi\nif [ \"${CONFIGURATION}\" = \"Release Native\" ]; then\nif [ ! -d \"./Build/Release\" ]; then mkdir -p \"./Build/Release\"; fi\ncp \"./../../../../../test/sample.bmp\" \"./Build/Release/sample.bmp\"\ncp \"./../../../../../test/icon.bmp\" \"./Build/Release/icon.bmp\"\nfi";
|
||||
};
|
||||
/* End PBXShellScriptBuildPhase section */
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
208462FC4C8275FF6B437D23 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
5C7E74D2428F5D0E5D255890 /* testscale.c in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXVariantGroup section */
|
||||
/* End PBXVariantGroup section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
6C2E5EFD6B391AFE29F74168 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2main.a";
|
||||
targetProxy = 5478435D3A932BF85FEF5978 /* PBXContainerItemProxy */;
|
||||
};
|
||||
40A9274C023D14501F1E0B09 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2test.a";
|
||||
targetProxy = 695812884A4E4E67742C271C /* PBXContainerItemProxy */;
|
||||
};
|
||||
739B03B657397C6C3BBA4B10 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2.a";
|
||||
targetProxy = 614474296E7608606F001FE6 /* PBXContainerItemProxy */;
|
||||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
38D3412E523F2FF65E750295 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testscale";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
7BB4091A16586ED03AB36A59 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testscale";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
16FB63191DCC7389511770EA /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testscale";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
067C640A78A9459B4C4A1F7F /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testscale";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
42050D2904E37ACF6D4A536A /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
7EA309485CBB312912310BE7 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
2B5E48ED6C3C057621381841 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
051B6D755DB943992EED6558 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
25AD405002C3531D24703F82 /* Build configuration list for PBXNativeTarget "testscale" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
38D3412E523F2FF65E750295 /* Debug Universal */,
|
||||
7BB4091A16586ED03AB36A59 /* Debug Native */,
|
||||
16FB63191DCC7389511770EA /* Release Universal */,
|
||||
067C640A78A9459B4C4A1F7F /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testscale" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
42050D2904E37ACF6D4A536A /* Debug Universal */,
|
||||
7EA309485CBB312912310BE7 /* Debug Native */,
|
||||
2B5E48ED6C3C057621381841 /* Release Universal */,
|
||||
051B6D755DB943992EED6558 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
|
||||
};
|
||||
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
|
||||
}
|
457
premake/Xcode/Xcode3/tests/testsem/testsem.xcodeproj/project.pbxproj
Executable file
457
premake/Xcode/Xcode3/tests/testsem/testsem.xcodeproj/project.pbxproj
Executable file
|
@ -0,0 +1,457 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 45;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
23D727C066BC73B378660B91 /* testsem.c in Sources */ = {isa = PBXBuildFile; fileRef = 3DC63D4043E05E614C373246 /* testsem.c */; };
|
||||
79C46DFD3D8051E940E505D3 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6D4B71C230540E5312A67585 /* AudioToolbox.framework */; };
|
||||
68DE767B074D5196705C5DF9 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 64486EA133A1171D30D05825 /* AudioUnit.framework */; };
|
||||
2E1E631E63EF68CE3D6A179D /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0E42372420093EBA66A64A47 /* Cocoa.framework */; };
|
||||
39FC72F1593359D42D10293E /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 746C05F74057432023DF08F3 /* CoreAudio.framework */; };
|
||||
79EE18E441E46B8A5F440449 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5FD805DF7FB835B5371B626B /* IOKit.framework */; };
|
||||
445812F25E9F286875527298 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 70E22DCD04214F5B1DB15F6C /* Carbon.framework */; };
|
||||
00332AC262B35C453AE46753 /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6B15710922315C8E0DF36B0C /* ForceFeedback.framework */; };
|
||||
7CE41CCD694C08B66D543266 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1F0F147E6D2D32883850181A /* CoreFoundation.framework */; };
|
||||
46AF197E50572E3056B2526C /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 61DD30B97AB666044A674524 /* OpenGL.framework */; };
|
||||
1E623EDF37066D130CF14144 /* libSDL2main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 77011CA06E2E371F0E1747D3 /* libSDL2main.a */; };
|
||||
71EA42207B42562F5E850747 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 69346C0D7A5A6336006B1CAE /* libSDL2.a */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
5D8150C16B4F49401E2B334B /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 34CB05B5562E70E84B1975BD /* SDL2main.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 58DC62993160374E09FF7AD6;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
1B10591925DA12883FA50675 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 34CB05B5562E70E84B1975BD /* SDL2main.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 0E7126A94A11494963D3548B;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
339641237FD2473A5E7362AA /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 0FB06F434A7D007B1B2344F7 /* SDL2.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 07D004B11E733F1F0EA93105;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
0B0E63E30633081752D94589 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 0FB06F434A7D007B1B2344F7 /* SDL2.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 58C10ED14175754444033E0E;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
3DC63D4043E05E614C373246 /* testsem.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testsem.c"; path = "../../../../../test/testsem.c"; sourceTree = "<group>"; };
|
||||
6D4B71C230540E5312A67585 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioToolbox.framework"; path = "/System/Library/Frameworks/AudioToolbox.framework"; sourceTree = "<absolute>"; };
|
||||
64486EA133A1171D30D05825 /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioUnit.framework"; path = "/System/Library/Frameworks/AudioUnit.framework"; sourceTree = "<absolute>"; };
|
||||
0E42372420093EBA66A64A47 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Cocoa.framework"; path = "/System/Library/Frameworks/Cocoa.framework"; sourceTree = "<absolute>"; };
|
||||
746C05F74057432023DF08F3 /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreAudio.framework"; path = "/System/Library/Frameworks/CoreAudio.framework"; sourceTree = "<absolute>"; };
|
||||
5FD805DF7FB835B5371B626B /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "IOKit.framework"; path = "/System/Library/Frameworks/IOKit.framework"; sourceTree = "<absolute>"; };
|
||||
70E22DCD04214F5B1DB15F6C /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Carbon.framework"; path = "/System/Library/Frameworks/Carbon.framework"; sourceTree = "<absolute>"; };
|
||||
6B15710922315C8E0DF36B0C /* ForceFeedback.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "ForceFeedback.framework"; path = "/System/Library/Frameworks/ForceFeedback.framework"; sourceTree = "<absolute>"; };
|
||||
1F0F147E6D2D32883850181A /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreFoundation.framework"; path = "/System/Library/Frameworks/CoreFoundation.framework"; sourceTree = "<absolute>"; };
|
||||
61DD30B97AB666044A674524 /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "OpenGL.framework"; path = "/System/Library/Frameworks/OpenGL.framework"; sourceTree = "<absolute>"; };
|
||||
740F3E5D0BEF048353CF5D3D /* testsem */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = "testsem"; path = "testsem"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
34CB05B5562E70E84B1975BD /* SDL2main.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2main.xcodeproj"; path = "../../SDL2main/SDL2main.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
0FB06F434A7D007B1B2344F7 /* SDL2.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2.xcodeproj"; path = "../../SDL2/SDL2.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
4D0337447364434E68AC7C13 /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
79C46DFD3D8051E940E505D3 /* AudioToolbox.framework in Frameworks */,
|
||||
68DE767B074D5196705C5DF9 /* AudioUnit.framework in Frameworks */,
|
||||
2E1E631E63EF68CE3D6A179D /* Cocoa.framework in Frameworks */,
|
||||
39FC72F1593359D42D10293E /* CoreAudio.framework in Frameworks */,
|
||||
79EE18E441E46B8A5F440449 /* IOKit.framework in Frameworks */,
|
||||
445812F25E9F286875527298 /* Carbon.framework in Frameworks */,
|
||||
00332AC262B35C453AE46753 /* ForceFeedback.framework in Frameworks */,
|
||||
7CE41CCD694C08B66D543266 /* CoreFoundation.framework in Frameworks */,
|
||||
46AF197E50572E3056B2526C /* OpenGL.framework in Frameworks */,
|
||||
1E623EDF37066D130CF14144 /* libSDL2main.a in Frameworks */,
|
||||
71EA42207B42562F5E850747 /* libSDL2.a in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
7BBF483138F638271C0B3153 /* testsem */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
4F2912F91AF36CB64E623EFC /* test */,
|
||||
1764508366145E0400845D87 /* Frameworks */,
|
||||
59544DA468A5578103583F02 /* Products */,
|
||||
4AEA54AE768D59E8166C3D28 /* Projects */,
|
||||
);
|
||||
name = "testsem";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
4F2912F91AF36CB64E623EFC /* test */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
3DC63D4043E05E614C373246 /* testsem.c */,
|
||||
);
|
||||
name = "test";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
1764508366145E0400845D87 /* Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
6D4B71C230540E5312A67585 /* AudioToolbox.framework */,
|
||||
64486EA133A1171D30D05825 /* AudioUnit.framework */,
|
||||
0E42372420093EBA66A64A47 /* Cocoa.framework */,
|
||||
746C05F74057432023DF08F3 /* CoreAudio.framework */,
|
||||
5FD805DF7FB835B5371B626B /* IOKit.framework */,
|
||||
70E22DCD04214F5B1DB15F6C /* Carbon.framework */,
|
||||
6B15710922315C8E0DF36B0C /* ForceFeedback.framework */,
|
||||
1F0F147E6D2D32883850181A /* CoreFoundation.framework */,
|
||||
61DD30B97AB666044A674524 /* OpenGL.framework */,
|
||||
);
|
||||
name = "Frameworks";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
59544DA468A5578103583F02 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
740F3E5D0BEF048353CF5D3D /* testsem */,
|
||||
);
|
||||
name = "Products";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
4AEA54AE768D59E8166C3D28 /* Projects */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
34CB05B5562E70E84B1975BD /* SDL2main.xcodeproj */,
|
||||
0FB06F434A7D007B1B2344F7 /* SDL2.xcodeproj */,
|
||||
);
|
||||
name = "Projects";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
659660EA44F207D27BFC71D3 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
77011CA06E2E371F0E1747D3 /* libSDL2main.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
43C27A16721169F641C46197 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
69346C0D7A5A6336006B1CAE /* libSDL2.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
522E4E093832135C2C4025DA /* testsem */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 7E62068E021B5BEA74A939B4 /* Build configuration list for PBXNativeTarget "testsem" */;
|
||||
buildPhases = (
|
||||
116843D511AA349D4B307059 /* Resources */,
|
||||
0F912A1002BD727B18D571CE /* Sources */,
|
||||
4D0337447364434E68AC7C13 /* Frameworks */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
222C22526E4E4A673B3C04E0 /* PBXTargetDependency */,
|
||||
2E2D469655C32E386F1417AB /* PBXTargetDependency */,
|
||||
);
|
||||
name = "testsem";
|
||||
productInstallPath = "$(HOME)/bin";
|
||||
productName = "testsem";
|
||||
productReference = 740F3E5D0BEF048353CF5D3D /* testsem */;
|
||||
productType = "com.apple.product-type.tool";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
08FB7793FE84155DC02AAC07 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
buildConfigurationList = 1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testsem" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
hasScannedForEncodings = 1;
|
||||
mainGroup = 7BBF483138F638271C0B3153 /* testsem */;
|
||||
projectDirPath = "";
|
||||
projectReferences = (
|
||||
{
|
||||
ProductGroup = 659660EA44F207D27BFC71D3 /* Products */;
|
||||
ProjectRef = 34CB05B5562E70E84B1975BD /* SDL2main.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 43C27A16721169F641C46197 /* Products */;
|
||||
ProjectRef = 0FB06F434A7D007B1B2344F7 /* SDL2.xcodeproj */;
|
||||
},
|
||||
);
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
522E4E093832135C2C4025DA /* testsem */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXReferenceProxy section */
|
||||
77011CA06E2E371F0E1747D3 /* libSDL2main.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2main.a";
|
||||
remoteRef = 5D8150C16B4F49401E2B334B /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
69346C0D7A5A6336006B1CAE /* libSDL2.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2.a";
|
||||
remoteRef = 339641237FD2473A5E7362AA /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
/* End PBXReferenceProxy section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
116843D511AA349D4B307059 /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
0F912A1002BD727B18D571CE /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
23D727C066BC73B378660B91 /* testsem.c in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXVariantGroup section */
|
||||
/* End PBXVariantGroup section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
222C22526E4E4A673B3C04E0 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2main.a";
|
||||
targetProxy = 1B10591925DA12883FA50675 /* PBXContainerItemProxy */;
|
||||
};
|
||||
2E2D469655C32E386F1417AB /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2.a";
|
||||
targetProxy = 0B0E63E30633081752D94589 /* PBXContainerItemProxy */;
|
||||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
7048280F2E9E372505836FCB /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testsem";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
157B62A8427F2EF5665049AA /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testsem";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
36E32B38286B3C5915295CAB /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testsem";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
38FB05EE6260400735ED5DD2 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testsem";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
2D593B3A0AA5576E212E6396 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
64490E226FA359BF46AA4F5A /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
195A6625383F595B24581B85 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
2C4A3A796A7D45AD08F00038 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
7E62068E021B5BEA74A939B4 /* Build configuration list for PBXNativeTarget "testsem" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
7048280F2E9E372505836FCB /* Debug Universal */,
|
||||
157B62A8427F2EF5665049AA /* Debug Native */,
|
||||
36E32B38286B3C5915295CAB /* Release Universal */,
|
||||
38FB05EE6260400735ED5DD2 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testsem" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
2D593B3A0AA5576E212E6396 /* Debug Universal */,
|
||||
64490E226FA359BF46AA4F5A /* Debug Native */,
|
||||
195A6625383F595B24581B85 /* Release Universal */,
|
||||
2C4A3A796A7D45AD08F00038 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
|
||||
};
|
||||
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
|
||||
}
|
478
premake/Xcode/Xcode3/tests/testshader/testshader.xcodeproj/project.pbxproj
Executable file
478
premake/Xcode/Xcode3/tests/testshader/testshader.xcodeproj/project.pbxproj
Executable file
|
@ -0,0 +1,478 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 45;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
23D051A629F740B60E253CB9 /* testshader.c in Sources */ = {isa = PBXBuildFile; fileRef = 134C74B1427128EE60A172E7 /* testshader.c */; };
|
||||
382D14F447586A74066013BE /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2F9638AB656E238065CF7E96 /* AudioToolbox.framework */; };
|
||||
41763EBD74246C48267307B9 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5AF068F34B7D000811A2404F /* AudioUnit.framework */; };
|
||||
79EE2FCC7F54000829121C9F /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2573329901D62DDB06FE117A /* Cocoa.framework */; };
|
||||
3C252B7B191554CD7DAB0703 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 15167E334C2E06C906711189 /* CoreAudio.framework */; };
|
||||
40330C033C3E33FB54E51BB7 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6C89263646260FAB3D7A1961 /* IOKit.framework */; };
|
||||
5C8E6FC6322C12CB7A8F586D /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 21D75E275FDC0F5D55947B75 /* Carbon.framework */; };
|
||||
3F7D384D5E783FAC44A80F2E /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 65AC24DF57DF0F113C531E41 /* ForceFeedback.framework */; };
|
||||
29FD532E2B3819D645AD0812 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 157D6BA86B493563050D502A /* CoreFoundation.framework */; };
|
||||
7A58360130FF499B1987103B /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 590216181858482E648D0B1E /* OpenGL.framework */; };
|
||||
399C6FFC268A2F921D0F53E3 /* libSDL2main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 34C72A6A21902BF629147CCC /* libSDL2main.a */; };
|
||||
58656ADB0ADE0DEA1C053C03 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 78C170FF352268D645B70248 /* libSDL2.a */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
07355230088E4BB107E96FAB /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 11894E51596031A03F2138F6 /* SDL2main.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 58DC62993160374E09FF7AD6;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
61552AFE1253241F7EE42C10 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 11894E51596031A03F2138F6 /* SDL2main.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 0E7126A94A11494963D3548B;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
018502242167787D6CB76865 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 70421877319763C546797101 /* SDL2.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 07D004B11E733F1F0EA93105;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
004B43E464D82EA41DA413F5 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 70421877319763C546797101 /* SDL2.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 58C10ED14175754444033E0E;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
134C74B1427128EE60A172E7 /* testshader.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testshader.c"; path = "../../../../../test/testshader.c"; sourceTree = "<group>"; };
|
||||
2F9638AB656E238065CF7E96 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioToolbox.framework"; path = "/System/Library/Frameworks/AudioToolbox.framework"; sourceTree = "<absolute>"; };
|
||||
5AF068F34B7D000811A2404F /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioUnit.framework"; path = "/System/Library/Frameworks/AudioUnit.framework"; sourceTree = "<absolute>"; };
|
||||
2573329901D62DDB06FE117A /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Cocoa.framework"; path = "/System/Library/Frameworks/Cocoa.framework"; sourceTree = "<absolute>"; };
|
||||
15167E334C2E06C906711189 /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreAudio.framework"; path = "/System/Library/Frameworks/CoreAudio.framework"; sourceTree = "<absolute>"; };
|
||||
6C89263646260FAB3D7A1961 /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "IOKit.framework"; path = "/System/Library/Frameworks/IOKit.framework"; sourceTree = "<absolute>"; };
|
||||
21D75E275FDC0F5D55947B75 /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Carbon.framework"; path = "/System/Library/Frameworks/Carbon.framework"; sourceTree = "<absolute>"; };
|
||||
65AC24DF57DF0F113C531E41 /* ForceFeedback.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "ForceFeedback.framework"; path = "/System/Library/Frameworks/ForceFeedback.framework"; sourceTree = "<absolute>"; };
|
||||
157D6BA86B493563050D502A /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreFoundation.framework"; path = "/System/Library/Frameworks/CoreFoundation.framework"; sourceTree = "<absolute>"; };
|
||||
590216181858482E648D0B1E /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "OpenGL.framework"; path = "/System/Library/Frameworks/OpenGL.framework"; sourceTree = "<absolute>"; };
|
||||
4A8247A1301F68195E500DD7 /* testshader */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = "testshader"; path = "testshader"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
11894E51596031A03F2138F6 /* SDL2main.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2main.xcodeproj"; path = "../../SDL2main/SDL2main.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
70421877319763C546797101 /* SDL2.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2.xcodeproj"; path = "../../SDL2/SDL2.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
36233D85791E4B556C1151C9 /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
382D14F447586A74066013BE /* AudioToolbox.framework in Frameworks */,
|
||||
41763EBD74246C48267307B9 /* AudioUnit.framework in Frameworks */,
|
||||
79EE2FCC7F54000829121C9F /* Cocoa.framework in Frameworks */,
|
||||
3C252B7B191554CD7DAB0703 /* CoreAudio.framework in Frameworks */,
|
||||
40330C033C3E33FB54E51BB7 /* IOKit.framework in Frameworks */,
|
||||
5C8E6FC6322C12CB7A8F586D /* Carbon.framework in Frameworks */,
|
||||
3F7D384D5E783FAC44A80F2E /* ForceFeedback.framework in Frameworks */,
|
||||
29FD532E2B3819D645AD0812 /* CoreFoundation.framework in Frameworks */,
|
||||
7A58360130FF499B1987103B /* OpenGL.framework in Frameworks */,
|
||||
399C6FFC268A2F921D0F53E3 /* libSDL2main.a in Frameworks */,
|
||||
58656ADB0ADE0DEA1C053C03 /* libSDL2.a in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
65182F0C69806E635014632D /* testshader */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
2D9925B750835F5F69B85B8B /* test */,
|
||||
52570C4B279F559944E13D28 /* Frameworks */,
|
||||
2DC4606B317D08903A3F278E /* Products */,
|
||||
7B763C5F3B38054104171266 /* Projects */,
|
||||
);
|
||||
name = "testshader";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
2D9925B750835F5F69B85B8B /* test */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
134C74B1427128EE60A172E7 /* testshader.c */,
|
||||
);
|
||||
name = "test";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
52570C4B279F559944E13D28 /* Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
2F9638AB656E238065CF7E96 /* AudioToolbox.framework */,
|
||||
5AF068F34B7D000811A2404F /* AudioUnit.framework */,
|
||||
2573329901D62DDB06FE117A /* Cocoa.framework */,
|
||||
15167E334C2E06C906711189 /* CoreAudio.framework */,
|
||||
6C89263646260FAB3D7A1961 /* IOKit.framework */,
|
||||
21D75E275FDC0F5D55947B75 /* Carbon.framework */,
|
||||
65AC24DF57DF0F113C531E41 /* ForceFeedback.framework */,
|
||||
157D6BA86B493563050D502A /* CoreFoundation.framework */,
|
||||
590216181858482E648D0B1E /* OpenGL.framework */,
|
||||
);
|
||||
name = "Frameworks";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
2DC4606B317D08903A3F278E /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
4A8247A1301F68195E500DD7 /* testshader */,
|
||||
);
|
||||
name = "Products";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
7B763C5F3B38054104171266 /* Projects */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
11894E51596031A03F2138F6 /* SDL2main.xcodeproj */,
|
||||
70421877319763C546797101 /* SDL2.xcodeproj */,
|
||||
);
|
||||
name = "Projects";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
3D3F7D1241E953EC457A6124 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
34C72A6A21902BF629147CCC /* libSDL2main.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
56B6477D64BC2B14331D4437 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
78C170FF352268D645B70248 /* libSDL2.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
1E840B4F16662F9E4EA1340A /* testshader */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 07E569961E9411B33C5D286D /* Build configuration list for PBXNativeTarget "testshader" */;
|
||||
buildPhases = (
|
||||
45DF56211C7F58150ACC1409 /* Resources */,
|
||||
7DD46A8703460AFF1B131FC2 /* Sources */,
|
||||
36233D85791E4B556C1151C9 /* Frameworks */,
|
||||
9607AE3710C85E8F00CD1376 /* Postbuild */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
62FA1686515F68E611693F22 /* PBXTargetDependency */,
|
||||
65A271FB45ED68A608E264B5 /* PBXTargetDependency */,
|
||||
);
|
||||
name = "testshader";
|
||||
productInstallPath = "$(HOME)/bin";
|
||||
productName = "testshader";
|
||||
productReference = 4A8247A1301F68195E500DD7 /* testshader */;
|
||||
productType = "com.apple.product-type.tool";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
08FB7793FE84155DC02AAC07 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
buildConfigurationList = 1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testshader" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
hasScannedForEncodings = 1;
|
||||
mainGroup = 65182F0C69806E635014632D /* testshader */;
|
||||
projectDirPath = "";
|
||||
projectReferences = (
|
||||
{
|
||||
ProductGroup = 3D3F7D1241E953EC457A6124 /* Products */;
|
||||
ProjectRef = 11894E51596031A03F2138F6 /* SDL2main.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 56B6477D64BC2B14331D4437 /* Products */;
|
||||
ProjectRef = 70421877319763C546797101 /* SDL2.xcodeproj */;
|
||||
},
|
||||
);
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
1E840B4F16662F9E4EA1340A /* testshader */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXReferenceProxy section */
|
||||
34C72A6A21902BF629147CCC /* libSDL2main.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2main.a";
|
||||
remoteRef = 07355230088E4BB107E96FAB /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
78C170FF352268D645B70248 /* libSDL2.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2.a";
|
||||
remoteRef = 018502242167787D6CB76865 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
/* End PBXReferenceProxy section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
45DF56211C7F58150ACC1409 /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXShellScriptBuildPhase section */
|
||||
9607AE3710C85E8F00CD1376 /* Postbuild */ = {
|
||||
isa = PBXShellScriptBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
inputPaths = (
|
||||
);
|
||||
name = Postbuild;
|
||||
outputPaths = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
shellPath = /bin/sh;
|
||||
shellScript = "if [ \"${CONFIGURATION}\" = \"Debug Universal\" ]; then\nif [ ! -d \"./Build/Debug\" ]; then mkdir -p \"./Build/Debug\"; fi\ncp \"./../../../../../test/icon.bmp\" \"./Build/Debug/icon.bmp\"\nfi\nif [ \"${CONFIGURATION}\" = \"Debug Native\" ]; then\nif [ ! -d \"./Build/Debug\" ]; then mkdir -p \"./Build/Debug\"; fi\ncp \"./../../../../../test/icon.bmp\" \"./Build/Debug/icon.bmp\"\nfi\nif [ \"${CONFIGURATION}\" = \"Release Universal\" ]; then\nif [ ! -d \"./Build/Release\" ]; then mkdir -p \"./Build/Release\"; fi\ncp \"./../../../../../test/icon.bmp\" \"./Build/Release/icon.bmp\"\nfi\nif [ \"${CONFIGURATION}\" = \"Release Native\" ]; then\nif [ ! -d \"./Build/Release\" ]; then mkdir -p \"./Build/Release\"; fi\ncp \"./../../../../../test/icon.bmp\" \"./Build/Release/icon.bmp\"\nfi";
|
||||
};
|
||||
/* End PBXShellScriptBuildPhase section */
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
7DD46A8703460AFF1B131FC2 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
23D051A629F740B60E253CB9 /* testshader.c in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXVariantGroup section */
|
||||
/* End PBXVariantGroup section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
62FA1686515F68E611693F22 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2main.a";
|
||||
targetProxy = 61552AFE1253241F7EE42C10 /* PBXContainerItemProxy */;
|
||||
};
|
||||
65A271FB45ED68A608E264B5 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2.a";
|
||||
targetProxy = 004B43E464D82EA41DA413F5 /* PBXContainerItemProxy */;
|
||||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
01D9087D534B7CE341305890 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testshader";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
1202753D23397666358A010B /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testshader";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
4BAF54AF4A05157B5986250E /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testshader";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
47257A7C1DA17473369B0F99 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testshader";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
7B0D26586A397937134463E2 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
"HAVE_OPENGL",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
25AC4C1D043159711F660C26 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
"HAVE_OPENGL",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
41AE249E2B16442B1A3254CE /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
"HAVE_OPENGL",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
07E771BF6D7201C0194804F6 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
"HAVE_OPENGL",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
07E569961E9411B33C5D286D /* Build configuration list for PBXNativeTarget "testshader" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
01D9087D534B7CE341305890 /* Debug Universal */,
|
||||
1202753D23397666358A010B /* Debug Native */,
|
||||
4BAF54AF4A05157B5986250E /* Release Universal */,
|
||||
47257A7C1DA17473369B0F99 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testshader" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
7B0D26586A397937134463E2 /* Debug Universal */,
|
||||
25AC4C1D043159711F660C26 /* Debug Native */,
|
||||
41AE249E2B16442B1A3254CE /* Release Universal */,
|
||||
07E771BF6D7201C0194804F6 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
|
||||
};
|
||||
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
|
||||
}
|
474
premake/Xcode/Xcode3/tests/testshape/testshape.xcodeproj/project.pbxproj
Executable file
474
premake/Xcode/Xcode3/tests/testshape/testshape.xcodeproj/project.pbxproj
Executable file
|
@ -0,0 +1,474 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 45;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
202628995578715C6F5637E6 /* testshape.c in Sources */ = {isa = PBXBuildFile; fileRef = 43E24949641949004B330CAE /* testshape.c */; };
|
||||
788117C91E8415DC3321536A /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 72D8592724162CF94B460B9D /* AudioToolbox.framework */; };
|
||||
734A25BC7D5823D04BE7375C /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 54547D3A0DBE4FA7056B51EC /* AudioUnit.framework */; };
|
||||
17E42AF547993879442C3108 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0B16756D762D04AD0DB22708 /* Cocoa.framework */; };
|
||||
709954A2023777BB558545D2 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B036C48219E21265EE27992 /* CoreAudio.framework */; };
|
||||
506A736657DC4736575E7CBF /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1B5B25FF0A8330761456538E /* IOKit.framework */; };
|
||||
77B3169B22CF6A4F73A303DA /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 65B8302030B00C5A033F3E29 /* Carbon.framework */; };
|
||||
45062A8B0E0322773F490BAB /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 11DA2C82465663C7424D4E3A /* ForceFeedback.framework */; };
|
||||
17F2356A544A561848142CE1 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0FB9466E6DFA48E158636096 /* CoreFoundation.framework */; };
|
||||
26D43E2850235FEA357A5E50 /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 732B1B64571C2542457D1813 /* OpenGL.framework */; };
|
||||
5FCF2AC22A4201B734B7756F /* libSDL2main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 005F68A0073E7FFC7B8434D6 /* libSDL2main.a */; };
|
||||
709156165A287C716B6339E5 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6D1469BB087227AB70854EA9 /* libSDL2.a */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
2384308443B135C947953CD0 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 67120B7E04F779A22B45751D /* SDL2main.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 58DC62993160374E09FF7AD6;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
00853D8C601C54567F116D02 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 67120B7E04F779A22B45751D /* SDL2main.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 0E7126A94A11494963D3548B;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
20520A1452E97A671C5A0639 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 55AA1BF734016AF247A5433B /* SDL2.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 07D004B11E733F1F0EA93105;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
1BA16A511E0B21FE310003A3 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 55AA1BF734016AF247A5433B /* SDL2.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 58C10ED14175754444033E0E;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
43E24949641949004B330CAE /* testshape.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testshape.c"; path = "../../../../../test/testshape.c"; sourceTree = "<group>"; };
|
||||
72D8592724162CF94B460B9D /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioToolbox.framework"; path = "/System/Library/Frameworks/AudioToolbox.framework"; sourceTree = "<absolute>"; };
|
||||
54547D3A0DBE4FA7056B51EC /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioUnit.framework"; path = "/System/Library/Frameworks/AudioUnit.framework"; sourceTree = "<absolute>"; };
|
||||
0B16756D762D04AD0DB22708 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Cocoa.framework"; path = "/System/Library/Frameworks/Cocoa.framework"; sourceTree = "<absolute>"; };
|
||||
3B036C48219E21265EE27992 /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreAudio.framework"; path = "/System/Library/Frameworks/CoreAudio.framework"; sourceTree = "<absolute>"; };
|
||||
1B5B25FF0A8330761456538E /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "IOKit.framework"; path = "/System/Library/Frameworks/IOKit.framework"; sourceTree = "<absolute>"; };
|
||||
65B8302030B00C5A033F3E29 /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Carbon.framework"; path = "/System/Library/Frameworks/Carbon.framework"; sourceTree = "<absolute>"; };
|
||||
11DA2C82465663C7424D4E3A /* ForceFeedback.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "ForceFeedback.framework"; path = "/System/Library/Frameworks/ForceFeedback.framework"; sourceTree = "<absolute>"; };
|
||||
0FB9466E6DFA48E158636096 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreFoundation.framework"; path = "/System/Library/Frameworks/CoreFoundation.framework"; sourceTree = "<absolute>"; };
|
||||
732B1B64571C2542457D1813 /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "OpenGL.framework"; path = "/System/Library/Frameworks/OpenGL.framework"; sourceTree = "<absolute>"; };
|
||||
5C3739896E223879365B4DE4 /* testshape */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = "testshape"; path = "testshape"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
67120B7E04F779A22B45751D /* SDL2main.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2main.xcodeproj"; path = "../../SDL2main/SDL2main.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
55AA1BF734016AF247A5433B /* SDL2.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2.xcodeproj"; path = "../../SDL2/SDL2.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
3E8C126F5ABF48AB57426F58 /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
788117C91E8415DC3321536A /* AudioToolbox.framework in Frameworks */,
|
||||
734A25BC7D5823D04BE7375C /* AudioUnit.framework in Frameworks */,
|
||||
17E42AF547993879442C3108 /* Cocoa.framework in Frameworks */,
|
||||
709954A2023777BB558545D2 /* CoreAudio.framework in Frameworks */,
|
||||
506A736657DC4736575E7CBF /* IOKit.framework in Frameworks */,
|
||||
77B3169B22CF6A4F73A303DA /* Carbon.framework in Frameworks */,
|
||||
45062A8B0E0322773F490BAB /* ForceFeedback.framework in Frameworks */,
|
||||
17F2356A544A561848142CE1 /* CoreFoundation.framework in Frameworks */,
|
||||
26D43E2850235FEA357A5E50 /* OpenGL.framework in Frameworks */,
|
||||
5FCF2AC22A4201B734B7756F /* libSDL2main.a in Frameworks */,
|
||||
709156165A287C716B6339E5 /* libSDL2.a in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
5D7D4BAD6D647D711B6D19CE /* testshape */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
5CD208E04E0E7A0851C371DC /* test */,
|
||||
6AE30425336078A52B7B221A /* Frameworks */,
|
||||
766D2A792C7D7D73113560E7 /* Products */,
|
||||
02AE6DE75BDE0A34746B344D /* Projects */,
|
||||
);
|
||||
name = "testshape";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
5CD208E04E0E7A0851C371DC /* test */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
43E24949641949004B330CAE /* testshape.c */,
|
||||
);
|
||||
name = "test";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
6AE30425336078A52B7B221A /* Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
72D8592724162CF94B460B9D /* AudioToolbox.framework */,
|
||||
54547D3A0DBE4FA7056B51EC /* AudioUnit.framework */,
|
||||
0B16756D762D04AD0DB22708 /* Cocoa.framework */,
|
||||
3B036C48219E21265EE27992 /* CoreAudio.framework */,
|
||||
1B5B25FF0A8330761456538E /* IOKit.framework */,
|
||||
65B8302030B00C5A033F3E29 /* Carbon.framework */,
|
||||
11DA2C82465663C7424D4E3A /* ForceFeedback.framework */,
|
||||
0FB9466E6DFA48E158636096 /* CoreFoundation.framework */,
|
||||
732B1B64571C2542457D1813 /* OpenGL.framework */,
|
||||
);
|
||||
name = "Frameworks";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
766D2A792C7D7D73113560E7 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
5C3739896E223879365B4DE4 /* testshape */,
|
||||
);
|
||||
name = "Products";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
02AE6DE75BDE0A34746B344D /* Projects */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
67120B7E04F779A22B45751D /* SDL2main.xcodeproj */,
|
||||
55AA1BF734016AF247A5433B /* SDL2.xcodeproj */,
|
||||
);
|
||||
name = "Projects";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
49F435A3218F4BA0205559A6 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
005F68A0073E7FFC7B8434D6 /* libSDL2main.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
487B0976429814BD155C6CAE /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
6D1469BB087227AB70854EA9 /* libSDL2.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
35AA427877B403F005830AC6 /* testshape */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 193B2B3337325C373BD14073 /* Build configuration list for PBXNativeTarget "testshape" */;
|
||||
buildPhases = (
|
||||
5AE51D66204A1AA957ED31CB /* Resources */,
|
||||
3BE6230259D825610F5954CA /* Sources */,
|
||||
3E8C126F5ABF48AB57426F58 /* Frameworks */,
|
||||
9607AE3710C85E8F00CD1376 /* Postbuild */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
311D1281113535BC65B42833 /* PBXTargetDependency */,
|
||||
75D06A7C056D7268208F223B /* PBXTargetDependency */,
|
||||
);
|
||||
name = "testshape";
|
||||
productInstallPath = "$(HOME)/bin";
|
||||
productName = "testshape";
|
||||
productReference = 5C3739896E223879365B4DE4 /* testshape */;
|
||||
productType = "com.apple.product-type.tool";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
08FB7793FE84155DC02AAC07 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
buildConfigurationList = 1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testshape" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
hasScannedForEncodings = 1;
|
||||
mainGroup = 5D7D4BAD6D647D711B6D19CE /* testshape */;
|
||||
projectDirPath = "";
|
||||
projectReferences = (
|
||||
{
|
||||
ProductGroup = 49F435A3218F4BA0205559A6 /* Products */;
|
||||
ProjectRef = 67120B7E04F779A22B45751D /* SDL2main.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 487B0976429814BD155C6CAE /* Products */;
|
||||
ProjectRef = 55AA1BF734016AF247A5433B /* SDL2.xcodeproj */;
|
||||
},
|
||||
);
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
35AA427877B403F005830AC6 /* testshape */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXReferenceProxy section */
|
||||
005F68A0073E7FFC7B8434D6 /* libSDL2main.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2main.a";
|
||||
remoteRef = 2384308443B135C947953CD0 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
6D1469BB087227AB70854EA9 /* libSDL2.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2.a";
|
||||
remoteRef = 20520A1452E97A671C5A0639 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
/* End PBXReferenceProxy section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
5AE51D66204A1AA957ED31CB /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXShellScriptBuildPhase section */
|
||||
9607AE3710C85E8F00CD1376 /* Postbuild */ = {
|
||||
isa = PBXShellScriptBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
inputPaths = (
|
||||
);
|
||||
name = Postbuild;
|
||||
outputPaths = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
shellPath = /bin/sh;
|
||||
shellScript = "if [ \"${CONFIGURATION}\" = \"Debug Universal\" ]; then\nif [ ! -d \"./Build/Debug/shapes\" ]; then mkdir -p \"./Build/Debug/shapes\"; fi\ncp ./../../../../../test/shapes/*.bmp \"./Build/Debug/shapes\"\nfi\nif [ \"${CONFIGURATION}\" = \"Debug Native\" ]; then\nif [ ! -d \"./Build/Debug/shapes\" ]; then mkdir -p \"./Build/Debug/shapes\"; fi\ncp ./../../../../../test/shapes/*.bmp \"./Build/Debug/shapes\"\nfi\nif [ \"${CONFIGURATION}\" = \"Release Universal\" ]; then\nif [ ! -d \"./Build/Release/shapes\" ]; then mkdir -p \"./Build/Release/shapes\"; fi\ncp ./../../../../../test/shapes/*.bmp \"./Build/Release/shapes\"\nfi\nif [ \"${CONFIGURATION}\" = \"Release Native\" ]; then\nif [ ! -d \"./Build/Release/shapes\" ]; then mkdir -p \"./Build/Release/shapes\"; fi\ncp ./../../../../../test/shapes/*.bmp \"./Build/Release/shapes\"\nfi";
|
||||
};
|
||||
/* End PBXShellScriptBuildPhase section */
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
3BE6230259D825610F5954CA /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
202628995578715C6F5637E6 /* testshape.c in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXVariantGroup section */
|
||||
/* End PBXVariantGroup section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
311D1281113535BC65B42833 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2main.a";
|
||||
targetProxy = 00853D8C601C54567F116D02 /* PBXContainerItemProxy */;
|
||||
};
|
||||
75D06A7C056D7268208F223B /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2.a";
|
||||
targetProxy = 1BA16A511E0B21FE310003A3 /* PBXContainerItemProxy */;
|
||||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
592F43A85686299E6E721640 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testshape";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
78085C4758825991561F2095 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testshape";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
22E1002723CF734227D92CC2 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testshape";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
047130637117482F228B7442 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testshape";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
7C8C7CFD7587313147A94909 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
31387F642C4233DB0E8B77CA /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
215701D2376A2E9B7AF05275 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
29844E000AE01A8D350A510D /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
193B2B3337325C373BD14073 /* Build configuration list for PBXNativeTarget "testshape" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
592F43A85686299E6E721640 /* Debug Universal */,
|
||||
78085C4758825991561F2095 /* Debug Native */,
|
||||
22E1002723CF734227D92CC2 /* Release Universal */,
|
||||
047130637117482F228B7442 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testshape" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
7C8C7CFD7587313147A94909 /* Debug Universal */,
|
||||
31387F642C4233DB0E8B77CA /* Debug Native */,
|
||||
215701D2376A2E9B7AF05275 /* Release Universal */,
|
||||
29844E000AE01A8D350A510D /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
|
||||
};
|
||||
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
|
||||
}
|
517
premake/Xcode/Xcode3/tests/testsprite2/testsprite2.xcodeproj/project.pbxproj
Executable file
517
premake/Xcode/Xcode3/tests/testsprite2/testsprite2.xcodeproj/project.pbxproj
Executable file
|
@ -0,0 +1,517 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 45;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
3EB57AB86FFE23F207D537AA /* testsprite2.c in Sources */ = {isa = PBXBuildFile; fileRef = 2A912E101D30786C09E95794 /* testsprite2.c */; };
|
||||
087A1944451D2DA369184F1E /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C8104694537524B61B218B0 /* AudioToolbox.framework */; };
|
||||
68546BB2759652B31B21432E /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6618588939563E5E1F43181E /* AudioUnit.framework */; };
|
||||
44791DCF02A874A118976C9D /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 064A109E14BF42380B651BDC /* Cocoa.framework */; };
|
||||
183D70E81E9563380C4B1807 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 726B55980F35791C46607166 /* CoreAudio.framework */; };
|
||||
5FC045FE3F3C1D5139544A77 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 243B45494B536CC32BE64580 /* IOKit.framework */; };
|
||||
4CE77BFA714D0B841F8028EB /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5BBF75B02F7422997FB35CD1 /* Carbon.framework */; };
|
||||
5F757CA42CFA6B45342F7CDB /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 198A6EF667E5219C2E8E6F70 /* ForceFeedback.framework */; };
|
||||
08E314F563FF09A96FC63B90 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3C4B69785D1400934B9D3169 /* CoreFoundation.framework */; };
|
||||
380B6B2A16CE56B7347E45CB /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 75A13ECB147671C62FD14B58 /* OpenGL.framework */; };
|
||||
53BA19D50A584D911B761477 /* libSDL2main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 71253F5D764F41F351093C58 /* libSDL2main.a */; };
|
||||
7254112B23CE415D785955E3 /* libSDL2test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 0B5C4F7D3911478D04F65D64 /* libSDL2test.a */; };
|
||||
09CB2BED55A5675D228C29D3 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5C3356376A7540802F88195A /* libSDL2.a */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
1E416B30527921DF534D7CB7 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 4A07383B4BB8387E5D8D5BC7 /* SDL2main.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 58DC62993160374E09FF7AD6;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
7F3F389B51573B773AE07791 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 4A07383B4BB8387E5D8D5BC7 /* SDL2main.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 0E7126A94A11494963D3548B;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
396811F314DA212D116460B0 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 42463E5A42B4529479332675 /* SDL2test.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 1E1175156F97314C291323CB;
|
||||
remoteInfo = "libSDL2test.a";
|
||||
};
|
||||
6EC218C470B6516954552546 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 42463E5A42B4529479332675 /* SDL2test.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 7CD70F5D43DA554D66287CFC;
|
||||
remoteInfo = "libSDL2test.a";
|
||||
};
|
||||
74530E532BD76A4B74FC7F15 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 5DB2012E79D1214636524DBF /* SDL2.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 07D004B11E733F1F0EA93105;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
416703454AE111545D5F42B8 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 5DB2012E79D1214636524DBF /* SDL2.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 58C10ED14175754444033E0E;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
2A912E101D30786C09E95794 /* testsprite2.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testsprite2.c"; path = "../../../../../test/testsprite2.c"; sourceTree = "<group>"; };
|
||||
2C8104694537524B61B218B0 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioToolbox.framework"; path = "/System/Library/Frameworks/AudioToolbox.framework"; sourceTree = "<absolute>"; };
|
||||
6618588939563E5E1F43181E /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioUnit.framework"; path = "/System/Library/Frameworks/AudioUnit.framework"; sourceTree = "<absolute>"; };
|
||||
064A109E14BF42380B651BDC /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Cocoa.framework"; path = "/System/Library/Frameworks/Cocoa.framework"; sourceTree = "<absolute>"; };
|
||||
726B55980F35791C46607166 /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreAudio.framework"; path = "/System/Library/Frameworks/CoreAudio.framework"; sourceTree = "<absolute>"; };
|
||||
243B45494B536CC32BE64580 /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "IOKit.framework"; path = "/System/Library/Frameworks/IOKit.framework"; sourceTree = "<absolute>"; };
|
||||
5BBF75B02F7422997FB35CD1 /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Carbon.framework"; path = "/System/Library/Frameworks/Carbon.framework"; sourceTree = "<absolute>"; };
|
||||
198A6EF667E5219C2E8E6F70 /* ForceFeedback.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "ForceFeedback.framework"; path = "/System/Library/Frameworks/ForceFeedback.framework"; sourceTree = "<absolute>"; };
|
||||
3C4B69785D1400934B9D3169 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreFoundation.framework"; path = "/System/Library/Frameworks/CoreFoundation.framework"; sourceTree = "<absolute>"; };
|
||||
75A13ECB147671C62FD14B58 /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "OpenGL.framework"; path = "/System/Library/Frameworks/OpenGL.framework"; sourceTree = "<absolute>"; };
|
||||
73D147E54C5433A953971D4B /* testsprite2 */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = "testsprite2"; path = "testsprite2"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
4A07383B4BB8387E5D8D5BC7 /* SDL2main.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2main.xcodeproj"; path = "../../SDL2main/SDL2main.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
42463E5A42B4529479332675 /* SDL2test.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2test.xcodeproj"; path = "../../SDL2test/SDL2test.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
5DB2012E79D1214636524DBF /* SDL2.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2.xcodeproj"; path = "../../SDL2/SDL2.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
29B6101B1E104C4613B163D4 /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
087A1944451D2DA369184F1E /* AudioToolbox.framework in Frameworks */,
|
||||
68546BB2759652B31B21432E /* AudioUnit.framework in Frameworks */,
|
||||
44791DCF02A874A118976C9D /* Cocoa.framework in Frameworks */,
|
||||
183D70E81E9563380C4B1807 /* CoreAudio.framework in Frameworks */,
|
||||
5FC045FE3F3C1D5139544A77 /* IOKit.framework in Frameworks */,
|
||||
4CE77BFA714D0B841F8028EB /* Carbon.framework in Frameworks */,
|
||||
5F757CA42CFA6B45342F7CDB /* ForceFeedback.framework in Frameworks */,
|
||||
08E314F563FF09A96FC63B90 /* CoreFoundation.framework in Frameworks */,
|
||||
380B6B2A16CE56B7347E45CB /* OpenGL.framework in Frameworks */,
|
||||
53BA19D50A584D911B761477 /* libSDL2main.a in Frameworks */,
|
||||
7254112B23CE415D785955E3 /* libSDL2test.a in Frameworks */,
|
||||
09CB2BED55A5675D228C29D3 /* libSDL2.a in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
0F951D9E01DE5764063B320A /* testsprite2 */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
6ADD0DB31A7C64810BF443A3 /* test */,
|
||||
1D8A702E686D5B7D11A779A8 /* Frameworks */,
|
||||
40EE4A173C0117077E861AD6 /* Products */,
|
||||
6E675BE807B31BCB59B04E8F /* Projects */,
|
||||
);
|
||||
name = "testsprite2";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
6ADD0DB31A7C64810BF443A3 /* test */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
2A912E101D30786C09E95794 /* testsprite2.c */,
|
||||
);
|
||||
name = "test";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
1D8A702E686D5B7D11A779A8 /* Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
2C8104694537524B61B218B0 /* AudioToolbox.framework */,
|
||||
6618588939563E5E1F43181E /* AudioUnit.framework */,
|
||||
064A109E14BF42380B651BDC /* Cocoa.framework */,
|
||||
726B55980F35791C46607166 /* CoreAudio.framework */,
|
||||
243B45494B536CC32BE64580 /* IOKit.framework */,
|
||||
5BBF75B02F7422997FB35CD1 /* Carbon.framework */,
|
||||
198A6EF667E5219C2E8E6F70 /* ForceFeedback.framework */,
|
||||
3C4B69785D1400934B9D3169 /* CoreFoundation.framework */,
|
||||
75A13ECB147671C62FD14B58 /* OpenGL.framework */,
|
||||
);
|
||||
name = "Frameworks";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
40EE4A173C0117077E861AD6 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
73D147E54C5433A953971D4B /* testsprite2 */,
|
||||
);
|
||||
name = "Products";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
6E675BE807B31BCB59B04E8F /* Projects */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
4A07383B4BB8387E5D8D5BC7 /* SDL2main.xcodeproj */,
|
||||
42463E5A42B4529479332675 /* SDL2test.xcodeproj */,
|
||||
5DB2012E79D1214636524DBF /* SDL2.xcodeproj */,
|
||||
);
|
||||
name = "Projects";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
7AB27AD56CB82C38517F043E /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
71253F5D764F41F351093C58 /* libSDL2main.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
71C168EC0C974C962B1926BC /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
0B5C4F7D3911478D04F65D64 /* libSDL2test.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
756E3CB600DF45B31E4B768C /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
5C3356376A7540802F88195A /* libSDL2.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
35687872140D74AE6C872222 /* testsprite2 */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 16886C987897338B04DA2605 /* Build configuration list for PBXNativeTarget "testsprite2" */;
|
||||
buildPhases = (
|
||||
18450EBA03DA7D8F43085EE2 /* Resources */,
|
||||
7E4517DF5BC63B2F1B251F2E /* Sources */,
|
||||
29B6101B1E104C4613B163D4 /* Frameworks */,
|
||||
9607AE3710C85E8F00CD1376 /* Postbuild */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
52B42E1E696C46266BEA61EE /* PBXTargetDependency */,
|
||||
1976183F0FB53D2149A16D9B /* PBXTargetDependency */,
|
||||
5B573B543FBA0DD522E169BD /* PBXTargetDependency */,
|
||||
);
|
||||
name = "testsprite2";
|
||||
productInstallPath = "$(HOME)/bin";
|
||||
productName = "testsprite2";
|
||||
productReference = 73D147E54C5433A953971D4B /* testsprite2 */;
|
||||
productType = "com.apple.product-type.tool";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
08FB7793FE84155DC02AAC07 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
buildConfigurationList = 1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testsprite2" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
hasScannedForEncodings = 1;
|
||||
mainGroup = 0F951D9E01DE5764063B320A /* testsprite2 */;
|
||||
projectDirPath = "";
|
||||
projectReferences = (
|
||||
{
|
||||
ProductGroup = 7AB27AD56CB82C38517F043E /* Products */;
|
||||
ProjectRef = 4A07383B4BB8387E5D8D5BC7 /* SDL2main.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 71C168EC0C974C962B1926BC /* Products */;
|
||||
ProjectRef = 42463E5A42B4529479332675 /* SDL2test.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 756E3CB600DF45B31E4B768C /* Products */;
|
||||
ProjectRef = 5DB2012E79D1214636524DBF /* SDL2.xcodeproj */;
|
||||
},
|
||||
);
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
35687872140D74AE6C872222 /* testsprite2 */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXReferenceProxy section */
|
||||
71253F5D764F41F351093C58 /* libSDL2main.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2main.a";
|
||||
remoteRef = 1E416B30527921DF534D7CB7 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
0B5C4F7D3911478D04F65D64 /* libSDL2test.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2test.a";
|
||||
remoteRef = 396811F314DA212D116460B0 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
5C3356376A7540802F88195A /* libSDL2.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2.a";
|
||||
remoteRef = 74530E532BD76A4B74FC7F15 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
/* End PBXReferenceProxy section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
18450EBA03DA7D8F43085EE2 /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXShellScriptBuildPhase section */
|
||||
9607AE3710C85E8F00CD1376 /* Postbuild */ = {
|
||||
isa = PBXShellScriptBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
inputPaths = (
|
||||
);
|
||||
name = Postbuild;
|
||||
outputPaths = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
shellPath = /bin/sh;
|
||||
shellScript = "if [ \"${CONFIGURATION}\" = \"Debug Universal\" ]; then\nif [ ! -d \"./Build/Debug\" ]; then mkdir -p \"./Build/Debug\"; fi\ncp \"./../../../../../test/icon.bmp\" \"./Build/Debug/icon.bmp\"\nfi\nif [ \"${CONFIGURATION}\" = \"Debug Native\" ]; then\nif [ ! -d \"./Build/Debug\" ]; then mkdir -p \"./Build/Debug\"; fi\ncp \"./../../../../../test/icon.bmp\" \"./Build/Debug/icon.bmp\"\nfi\nif [ \"${CONFIGURATION}\" = \"Release Universal\" ]; then\nif [ ! -d \"./Build/Release\" ]; then mkdir -p \"./Build/Release\"; fi\ncp \"./../../../../../test/icon.bmp\" \"./Build/Release/icon.bmp\"\nfi\nif [ \"${CONFIGURATION}\" = \"Release Native\" ]; then\nif [ ! -d \"./Build/Release\" ]; then mkdir -p \"./Build/Release\"; fi\ncp \"./../../../../../test/icon.bmp\" \"./Build/Release/icon.bmp\"\nfi";
|
||||
};
|
||||
/* End PBXShellScriptBuildPhase section */
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
7E4517DF5BC63B2F1B251F2E /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
3EB57AB86FFE23F207D537AA /* testsprite2.c in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXVariantGroup section */
|
||||
/* End PBXVariantGroup section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
52B42E1E696C46266BEA61EE /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2main.a";
|
||||
targetProxy = 7F3F389B51573B773AE07791 /* PBXContainerItemProxy */;
|
||||
};
|
||||
1976183F0FB53D2149A16D9B /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2test.a";
|
||||
targetProxy = 6EC218C470B6516954552546 /* PBXContainerItemProxy */;
|
||||
};
|
||||
5B573B543FBA0DD522E169BD /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2.a";
|
||||
targetProxy = 416703454AE111545D5F42B8 /* PBXContainerItemProxy */;
|
||||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
3F753F944A4A71F8566710F3 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testsprite2";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
6D705A0801376B88684946D8 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testsprite2";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
6DE045657B7422D169846ADC /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testsprite2";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
03805B3518B951D3749643DC /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testsprite2";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
6B1F452712591CF13A6E2780 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
131233112AA0233E6B222B9F /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
270E39AB193A36634CAB0F08 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
60D541A3387D31F43A4F39CB /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
16886C987897338B04DA2605 /* Build configuration list for PBXNativeTarget "testsprite2" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
3F753F944A4A71F8566710F3 /* Debug Universal */,
|
||||
6D705A0801376B88684946D8 /* Debug Native */,
|
||||
6DE045657B7422D169846ADC /* Release Universal */,
|
||||
03805B3518B951D3749643DC /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testsprite2" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
6B1F452712591CF13A6E2780 /* Debug Universal */,
|
||||
131233112AA0233E6B222B9F /* Debug Native */,
|
||||
270E39AB193A36634CAB0F08 /* Release Universal */,
|
||||
60D541A3387D31F43A4F39CB /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
|
||||
};
|
||||
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
|
||||
}
|
|
@ -0,0 +1,474 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 45;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
62DB4954662D1F8E3BA37ACA /* testspriteminimal.c in Sources */ = {isa = PBXBuildFile; fileRef = 5C1B753C765F6C601B2F643D /* testspriteminimal.c */; };
|
||||
3DC4313B3F2F64070882420C /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3DF550B7379E7829785514AA /* AudioToolbox.framework */; };
|
||||
2D9F4D2153A9336D676C1734 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2D61713970C95297751000A4 /* AudioUnit.framework */; };
|
||||
6BD50E7752975A842077685E /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 706E710E6B450C73763B538D /* Cocoa.framework */; };
|
||||
42C00439481E2BC73EF40DF7 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2FE229317DDE101622154306 /* CoreAudio.framework */; };
|
||||
6C270D18477F6BFE749C39D8 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 076917E15A445E933F807F75 /* IOKit.framework */; };
|
||||
304044844415497A0F162D57 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 171A4A4C65487EB26E3706DB /* Carbon.framework */; };
|
||||
33C83C51201D0602135E21F6 /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 50530398216B348742DA7819 /* ForceFeedback.framework */; };
|
||||
11791F8A3A541B8F0A705571 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 525E413445794C4774EB755C /* CoreFoundation.framework */; };
|
||||
145767026A1D1F7360996A50 /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0C951E12551829336BFC7208 /* OpenGL.framework */; };
|
||||
1B5059BB3DFF6E6543376759 /* libSDL2main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5DEE3D6A389C0DA574361287 /* libSDL2main.a */; };
|
||||
649855CA451F23FE1C5A6D39 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5CBE7C32481C336A0C2A2FE1 /* libSDL2.a */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
69041C6E09B95BF621382000 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 318318FD0A800B9226A94394 /* SDL2main.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 58DC62993160374E09FF7AD6;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
7C122EE362272F032F4B7958 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 318318FD0A800B9226A94394 /* SDL2main.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 0E7126A94A11494963D3548B;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
46BC1180082B6D3C25150D60 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 2BDE2A46153C30CD6704563B /* SDL2.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 07D004B11E733F1F0EA93105;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
2C5440E173DB379F53B531D5 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 2BDE2A46153C30CD6704563B /* SDL2.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 58C10ED14175754444033E0E;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
5C1B753C765F6C601B2F643D /* testspriteminimal.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testspriteminimal.c"; path = "../../../../../test/testspriteminimal.c"; sourceTree = "<group>"; };
|
||||
3DF550B7379E7829785514AA /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioToolbox.framework"; path = "/System/Library/Frameworks/AudioToolbox.framework"; sourceTree = "<absolute>"; };
|
||||
2D61713970C95297751000A4 /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioUnit.framework"; path = "/System/Library/Frameworks/AudioUnit.framework"; sourceTree = "<absolute>"; };
|
||||
706E710E6B450C73763B538D /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Cocoa.framework"; path = "/System/Library/Frameworks/Cocoa.framework"; sourceTree = "<absolute>"; };
|
||||
2FE229317DDE101622154306 /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreAudio.framework"; path = "/System/Library/Frameworks/CoreAudio.framework"; sourceTree = "<absolute>"; };
|
||||
076917E15A445E933F807F75 /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "IOKit.framework"; path = "/System/Library/Frameworks/IOKit.framework"; sourceTree = "<absolute>"; };
|
||||
171A4A4C65487EB26E3706DB /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Carbon.framework"; path = "/System/Library/Frameworks/Carbon.framework"; sourceTree = "<absolute>"; };
|
||||
50530398216B348742DA7819 /* ForceFeedback.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "ForceFeedback.framework"; path = "/System/Library/Frameworks/ForceFeedback.framework"; sourceTree = "<absolute>"; };
|
||||
525E413445794C4774EB755C /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreFoundation.framework"; path = "/System/Library/Frameworks/CoreFoundation.framework"; sourceTree = "<absolute>"; };
|
||||
0C951E12551829336BFC7208 /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "OpenGL.framework"; path = "/System/Library/Frameworks/OpenGL.framework"; sourceTree = "<absolute>"; };
|
||||
682B784310DB2802375B6DEC /* testspriteminimal */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = "testspriteminimal"; path = "testspriteminimal"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
318318FD0A800B9226A94394 /* SDL2main.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2main.xcodeproj"; path = "../../SDL2main/SDL2main.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
2BDE2A46153C30CD6704563B /* SDL2.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2.xcodeproj"; path = "../../SDL2/SDL2.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
4E1E250A414739E45532796C /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
3DC4313B3F2F64070882420C /* AudioToolbox.framework in Frameworks */,
|
||||
2D9F4D2153A9336D676C1734 /* AudioUnit.framework in Frameworks */,
|
||||
6BD50E7752975A842077685E /* Cocoa.framework in Frameworks */,
|
||||
42C00439481E2BC73EF40DF7 /* CoreAudio.framework in Frameworks */,
|
||||
6C270D18477F6BFE749C39D8 /* IOKit.framework in Frameworks */,
|
||||
304044844415497A0F162D57 /* Carbon.framework in Frameworks */,
|
||||
33C83C51201D0602135E21F6 /* ForceFeedback.framework in Frameworks */,
|
||||
11791F8A3A541B8F0A705571 /* CoreFoundation.framework in Frameworks */,
|
||||
145767026A1D1F7360996A50 /* OpenGL.framework in Frameworks */,
|
||||
1B5059BB3DFF6E6543376759 /* libSDL2main.a in Frameworks */,
|
||||
649855CA451F23FE1C5A6D39 /* libSDL2.a in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
2B5C2A426B511D0B4A8D204B /* testspriteminimal */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
45833D4C757D12843A930F3C /* test */,
|
||||
68EE6F8336E12B8015930A83 /* Frameworks */,
|
||||
374D3E547EB07A0F1F9E784C /* Products */,
|
||||
06B715DA20D125B67EC21AC9 /* Projects */,
|
||||
);
|
||||
name = "testspriteminimal";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
45833D4C757D12843A930F3C /* test */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
5C1B753C765F6C601B2F643D /* testspriteminimal.c */,
|
||||
);
|
||||
name = "test";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
68EE6F8336E12B8015930A83 /* Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
3DF550B7379E7829785514AA /* AudioToolbox.framework */,
|
||||
2D61713970C95297751000A4 /* AudioUnit.framework */,
|
||||
706E710E6B450C73763B538D /* Cocoa.framework */,
|
||||
2FE229317DDE101622154306 /* CoreAudio.framework */,
|
||||
076917E15A445E933F807F75 /* IOKit.framework */,
|
||||
171A4A4C65487EB26E3706DB /* Carbon.framework */,
|
||||
50530398216B348742DA7819 /* ForceFeedback.framework */,
|
||||
525E413445794C4774EB755C /* CoreFoundation.framework */,
|
||||
0C951E12551829336BFC7208 /* OpenGL.framework */,
|
||||
);
|
||||
name = "Frameworks";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
374D3E547EB07A0F1F9E784C /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
682B784310DB2802375B6DEC /* testspriteminimal */,
|
||||
);
|
||||
name = "Products";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
06B715DA20D125B67EC21AC9 /* Projects */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
318318FD0A800B9226A94394 /* SDL2main.xcodeproj */,
|
||||
2BDE2A46153C30CD6704563B /* SDL2.xcodeproj */,
|
||||
);
|
||||
name = "Projects";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
78825DB3215D6EE04BCB3D13 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
5DEE3D6A389C0DA574361287 /* libSDL2main.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
2CC02954759A55E144BB7D35 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
5CBE7C32481C336A0C2A2FE1 /* libSDL2.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
5C453F9422E25C27178F55DE /* testspriteminimal */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 478778DB14BD436004C87DD2 /* Build configuration list for PBXNativeTarget "testspriteminimal" */;
|
||||
buildPhases = (
|
||||
161627C86C5A1BA45985591E /* Resources */,
|
||||
7972338A540C63530C96571F /* Sources */,
|
||||
4E1E250A414739E45532796C /* Frameworks */,
|
||||
9607AE3710C85E8F00CD1376 /* Postbuild */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
2BE83F726BE730FC7CBF7E0F /* PBXTargetDependency */,
|
||||
32F8621364966E12740D384A /* PBXTargetDependency */,
|
||||
);
|
||||
name = "testspriteminimal";
|
||||
productInstallPath = "$(HOME)/bin";
|
||||
productName = "testspriteminimal";
|
||||
productReference = 682B784310DB2802375B6DEC /* testspriteminimal */;
|
||||
productType = "com.apple.product-type.tool";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
08FB7793FE84155DC02AAC07 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
buildConfigurationList = 1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testspriteminimal" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
hasScannedForEncodings = 1;
|
||||
mainGroup = 2B5C2A426B511D0B4A8D204B /* testspriteminimal */;
|
||||
projectDirPath = "";
|
||||
projectReferences = (
|
||||
{
|
||||
ProductGroup = 78825DB3215D6EE04BCB3D13 /* Products */;
|
||||
ProjectRef = 318318FD0A800B9226A94394 /* SDL2main.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 2CC02954759A55E144BB7D35 /* Products */;
|
||||
ProjectRef = 2BDE2A46153C30CD6704563B /* SDL2.xcodeproj */;
|
||||
},
|
||||
);
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
5C453F9422E25C27178F55DE /* testspriteminimal */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXReferenceProxy section */
|
||||
5DEE3D6A389C0DA574361287 /* libSDL2main.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2main.a";
|
||||
remoteRef = 69041C6E09B95BF621382000 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
5CBE7C32481C336A0C2A2FE1 /* libSDL2.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2.a";
|
||||
remoteRef = 46BC1180082B6D3C25150D60 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
/* End PBXReferenceProxy section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
161627C86C5A1BA45985591E /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXShellScriptBuildPhase section */
|
||||
9607AE3710C85E8F00CD1376 /* Postbuild */ = {
|
||||
isa = PBXShellScriptBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
inputPaths = (
|
||||
);
|
||||
name = Postbuild;
|
||||
outputPaths = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
shellPath = /bin/sh;
|
||||
shellScript = "if [ \"${CONFIGURATION}\" = \"Debug Universal\" ]; then\nif [ ! -d \"./Build/Debug\" ]; then mkdir -p \"./Build/Debug\"; fi\ncp \"./../../../../../test/icon.bmp\" \"./Build/Debug/icon.bmp\"\nfi\nif [ \"${CONFIGURATION}\" = \"Debug Native\" ]; then\nif [ ! -d \"./Build/Debug\" ]; then mkdir -p \"./Build/Debug\"; fi\ncp \"./../../../../../test/icon.bmp\" \"./Build/Debug/icon.bmp\"\nfi\nif [ \"${CONFIGURATION}\" = \"Release Universal\" ]; then\nif [ ! -d \"./Build/Release\" ]; then mkdir -p \"./Build/Release\"; fi\ncp \"./../../../../../test/icon.bmp\" \"./Build/Release/icon.bmp\"\nfi\nif [ \"${CONFIGURATION}\" = \"Release Native\" ]; then\nif [ ! -d \"./Build/Release\" ]; then mkdir -p \"./Build/Release\"; fi\ncp \"./../../../../../test/icon.bmp\" \"./Build/Release/icon.bmp\"\nfi";
|
||||
};
|
||||
/* End PBXShellScriptBuildPhase section */
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
7972338A540C63530C96571F /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
62DB4954662D1F8E3BA37ACA /* testspriteminimal.c in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXVariantGroup section */
|
||||
/* End PBXVariantGroup section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
2BE83F726BE730FC7CBF7E0F /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2main.a";
|
||||
targetProxy = 7C122EE362272F032F4B7958 /* PBXContainerItemProxy */;
|
||||
};
|
||||
32F8621364966E12740D384A /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2.a";
|
||||
targetProxy = 2C5440E173DB379F53B531D5 /* PBXContainerItemProxy */;
|
||||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
603C388D45F018CD77F5780C /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testspriteminimal";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
4FED08936BDD2D3F070A420C /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testspriteminimal";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
622F3BFF122C178B290A61E3 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testspriteminimal";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
503A46D813DE5AAD43977E11 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testspriteminimal";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
5F871CB005D22412470F4E84 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
589814B1177E728336BD3BB2 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
07DE20A2087426F07BA05E59 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
29247CDB151870E152C13DE2 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
478778DB14BD436004C87DD2 /* Build configuration list for PBXNativeTarget "testspriteminimal" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
603C388D45F018CD77F5780C /* Debug Universal */,
|
||||
4FED08936BDD2D3F070A420C /* Debug Native */,
|
||||
622F3BFF122C178B290A61E3 /* Release Universal */,
|
||||
503A46D813DE5AAD43977E11 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testspriteminimal" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
5F871CB005D22412470F4E84 /* Debug Universal */,
|
||||
589814B1177E728336BD3BB2 /* Debug Native */,
|
||||
07DE20A2087426F07BA05E59 /* Release Universal */,
|
||||
29247CDB151870E152C13DE2 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
|
||||
};
|
||||
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
|
||||
}
|
474
premake/Xcode/Xcode3/tests/teststreaming/teststreaming.xcodeproj/project.pbxproj
Executable file
474
premake/Xcode/Xcode3/tests/teststreaming/teststreaming.xcodeproj/project.pbxproj
Executable file
|
@ -0,0 +1,474 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 45;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
47447E154FC472C43BEA16E6 /* teststreaming.c in Sources */ = {isa = PBXBuildFile; fileRef = 1EE40EB60D7479286B5813D2 /* teststreaming.c */; };
|
||||
5317299B36F200543D5B53F3 /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3C3E36F2711806BE347F18CF /* AudioToolbox.framework */; };
|
||||
3B93528320F549E654071C62 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C2A7C9520D0712016AE1C0B /* AudioUnit.framework */; };
|
||||
54A0073931161CC363455BAB /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 732727135BFC1F100E9B643E /* Cocoa.framework */; };
|
||||
473B75407B957715044436EB /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4A9716F561A945765DC21491 /* CoreAudio.framework */; };
|
||||
6B0110E4132F74FD109468C2 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D97430D453817A97BA129F6 /* IOKit.framework */; };
|
||||
300874647C6570915163763A /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5614746C75256D0313E60AFE /* Carbon.framework */; };
|
||||
3FF2589E219215586AA51263 /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 782C1D3F27433FAE5F651E06 /* ForceFeedback.framework */; };
|
||||
59A36BDC79B856023BD6784F /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 436A761C2F4E2F82380023AB /* CoreFoundation.framework */; };
|
||||
67377FF61257162D09467EE7 /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2C133A541FDC30781B705A8B /* OpenGL.framework */; };
|
||||
22B348961023745658FA4216 /* libSDL2main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6A8E18482EF110D939C42DA4 /* libSDL2main.a */; };
|
||||
02E474F453003499444E5D9D /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 0588479D274C013F77D818D0 /* libSDL2.a */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
61B8029C633B63745F043822 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 70B46A1B2CE041E35E8C597E /* SDL2main.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 58DC62993160374E09FF7AD6;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
7A9F66C857A744F136C82CE7 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 70B46A1B2CE041E35E8C597E /* SDL2main.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 0E7126A94A11494963D3548B;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
2998598A27AA0FF5471E29D5 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 3FBA500309AC35F8693A1524 /* SDL2.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 07D004B11E733F1F0EA93105;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
76BE5E68237D14A7006F1192 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 3FBA500309AC35F8693A1524 /* SDL2.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 58C10ED14175754444033E0E;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
1EE40EB60D7479286B5813D2 /* teststreaming.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "teststreaming.c"; path = "../../../../../test/teststreaming.c"; sourceTree = "<group>"; };
|
||||
3C3E36F2711806BE347F18CF /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioToolbox.framework"; path = "/System/Library/Frameworks/AudioToolbox.framework"; sourceTree = "<absolute>"; };
|
||||
2C2A7C9520D0712016AE1C0B /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioUnit.framework"; path = "/System/Library/Frameworks/AudioUnit.framework"; sourceTree = "<absolute>"; };
|
||||
732727135BFC1F100E9B643E /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Cocoa.framework"; path = "/System/Library/Frameworks/Cocoa.framework"; sourceTree = "<absolute>"; };
|
||||
4A9716F561A945765DC21491 /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreAudio.framework"; path = "/System/Library/Frameworks/CoreAudio.framework"; sourceTree = "<absolute>"; };
|
||||
1D97430D453817A97BA129F6 /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "IOKit.framework"; path = "/System/Library/Frameworks/IOKit.framework"; sourceTree = "<absolute>"; };
|
||||
5614746C75256D0313E60AFE /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Carbon.framework"; path = "/System/Library/Frameworks/Carbon.framework"; sourceTree = "<absolute>"; };
|
||||
782C1D3F27433FAE5F651E06 /* ForceFeedback.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "ForceFeedback.framework"; path = "/System/Library/Frameworks/ForceFeedback.framework"; sourceTree = "<absolute>"; };
|
||||
436A761C2F4E2F82380023AB /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreFoundation.framework"; path = "/System/Library/Frameworks/CoreFoundation.framework"; sourceTree = "<absolute>"; };
|
||||
2C133A541FDC30781B705A8B /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "OpenGL.framework"; path = "/System/Library/Frameworks/OpenGL.framework"; sourceTree = "<absolute>"; };
|
||||
14733D757BB072E065202A98 /* teststreaming */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = "teststreaming"; path = "teststreaming"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
70B46A1B2CE041E35E8C597E /* SDL2main.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2main.xcodeproj"; path = "../../SDL2main/SDL2main.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
3FBA500309AC35F8693A1524 /* SDL2.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2.xcodeproj"; path = "../../SDL2/SDL2.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
1A74422A5609234E022836C0 /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
5317299B36F200543D5B53F3 /* AudioToolbox.framework in Frameworks */,
|
||||
3B93528320F549E654071C62 /* AudioUnit.framework in Frameworks */,
|
||||
54A0073931161CC363455BAB /* Cocoa.framework in Frameworks */,
|
||||
473B75407B957715044436EB /* CoreAudio.framework in Frameworks */,
|
||||
6B0110E4132F74FD109468C2 /* IOKit.framework in Frameworks */,
|
||||
300874647C6570915163763A /* Carbon.framework in Frameworks */,
|
||||
3FF2589E219215586AA51263 /* ForceFeedback.framework in Frameworks */,
|
||||
59A36BDC79B856023BD6784F /* CoreFoundation.framework in Frameworks */,
|
||||
67377FF61257162D09467EE7 /* OpenGL.framework in Frameworks */,
|
||||
22B348961023745658FA4216 /* libSDL2main.a in Frameworks */,
|
||||
02E474F453003499444E5D9D /* libSDL2.a in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
72FC3EFA16116F39330F49E8 /* teststreaming */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
485153C14B3F1FA33C3D7350 /* test */,
|
||||
13D33CCC7FC91EAA5D735C35 /* Frameworks */,
|
||||
03AB10080B2408D5172A6C45 /* Products */,
|
||||
5BE001EA674300077A322759 /* Projects */,
|
||||
);
|
||||
name = "teststreaming";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
485153C14B3F1FA33C3D7350 /* test */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
1EE40EB60D7479286B5813D2 /* teststreaming.c */,
|
||||
);
|
||||
name = "test";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
13D33CCC7FC91EAA5D735C35 /* Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
3C3E36F2711806BE347F18CF /* AudioToolbox.framework */,
|
||||
2C2A7C9520D0712016AE1C0B /* AudioUnit.framework */,
|
||||
732727135BFC1F100E9B643E /* Cocoa.framework */,
|
||||
4A9716F561A945765DC21491 /* CoreAudio.framework */,
|
||||
1D97430D453817A97BA129F6 /* IOKit.framework */,
|
||||
5614746C75256D0313E60AFE /* Carbon.framework */,
|
||||
782C1D3F27433FAE5F651E06 /* ForceFeedback.framework */,
|
||||
436A761C2F4E2F82380023AB /* CoreFoundation.framework */,
|
||||
2C133A541FDC30781B705A8B /* OpenGL.framework */,
|
||||
);
|
||||
name = "Frameworks";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
03AB10080B2408D5172A6C45 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
14733D757BB072E065202A98 /* teststreaming */,
|
||||
);
|
||||
name = "Products";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
5BE001EA674300077A322759 /* Projects */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
70B46A1B2CE041E35E8C597E /* SDL2main.xcodeproj */,
|
||||
3FBA500309AC35F8693A1524 /* SDL2.xcodeproj */,
|
||||
);
|
||||
name = "Projects";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
52EE3DCB5CB044A5688E4F3F /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
6A8E18482EF110D939C42DA4 /* libSDL2main.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
32DA150856EA5059045C6914 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
0588479D274C013F77D818D0 /* libSDL2.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
173C64D366191D744B872D7D /* teststreaming */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 16242E351F194FF65F771AE5 /* Build configuration list for PBXNativeTarget "teststreaming" */;
|
||||
buildPhases = (
|
||||
51C6293824A624077220472E /* Resources */,
|
||||
2C10687D72CD7CF4280235EF /* Sources */,
|
||||
1A74422A5609234E022836C0 /* Frameworks */,
|
||||
9607AE3710C85E8F00CD1376 /* Postbuild */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
79E557E67AA02D4E78F8139F /* PBXTargetDependency */,
|
||||
2D6224285416717E08173EAD /* PBXTargetDependency */,
|
||||
);
|
||||
name = "teststreaming";
|
||||
productInstallPath = "$(HOME)/bin";
|
||||
productName = "teststreaming";
|
||||
productReference = 14733D757BB072E065202A98 /* teststreaming */;
|
||||
productType = "com.apple.product-type.tool";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
08FB7793FE84155DC02AAC07 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
buildConfigurationList = 1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "teststreaming" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
hasScannedForEncodings = 1;
|
||||
mainGroup = 72FC3EFA16116F39330F49E8 /* teststreaming */;
|
||||
projectDirPath = "";
|
||||
projectReferences = (
|
||||
{
|
||||
ProductGroup = 52EE3DCB5CB044A5688E4F3F /* Products */;
|
||||
ProjectRef = 70B46A1B2CE041E35E8C597E /* SDL2main.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 32DA150856EA5059045C6914 /* Products */;
|
||||
ProjectRef = 3FBA500309AC35F8693A1524 /* SDL2.xcodeproj */;
|
||||
},
|
||||
);
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
173C64D366191D744B872D7D /* teststreaming */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXReferenceProxy section */
|
||||
6A8E18482EF110D939C42DA4 /* libSDL2main.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2main.a";
|
||||
remoteRef = 61B8029C633B63745F043822 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
0588479D274C013F77D818D0 /* libSDL2.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2.a";
|
||||
remoteRef = 2998598A27AA0FF5471E29D5 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
/* End PBXReferenceProxy section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
51C6293824A624077220472E /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXShellScriptBuildPhase section */
|
||||
9607AE3710C85E8F00CD1376 /* Postbuild */ = {
|
||||
isa = PBXShellScriptBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
inputPaths = (
|
||||
);
|
||||
name = Postbuild;
|
||||
outputPaths = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
shellPath = /bin/sh;
|
||||
shellScript = "if [ \"${CONFIGURATION}\" = \"Debug Universal\" ]; then\nif [ ! -d \"./Build/Debug\" ]; then mkdir -p \"./Build/Debug\"; fi\ncp \"./../../../../../test/moose.dat\" \"./Build/Debug/moose.dat\"\nfi\nif [ \"${CONFIGURATION}\" = \"Debug Native\" ]; then\nif [ ! -d \"./Build/Debug\" ]; then mkdir -p \"./Build/Debug\"; fi\ncp \"./../../../../../test/moose.dat\" \"./Build/Debug/moose.dat\"\nfi\nif [ \"${CONFIGURATION}\" = \"Release Universal\" ]; then\nif [ ! -d \"./Build/Release\" ]; then mkdir -p \"./Build/Release\"; fi\ncp \"./../../../../../test/moose.dat\" \"./Build/Release/moose.dat\"\nfi\nif [ \"${CONFIGURATION}\" = \"Release Native\" ]; then\nif [ ! -d \"./Build/Release\" ]; then mkdir -p \"./Build/Release\"; fi\ncp \"./../../../../../test/moose.dat\" \"./Build/Release/moose.dat\"\nfi";
|
||||
};
|
||||
/* End PBXShellScriptBuildPhase section */
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
2C10687D72CD7CF4280235EF /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
47447E154FC472C43BEA16E6 /* teststreaming.c in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXVariantGroup section */
|
||||
/* End PBXVariantGroup section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
79E557E67AA02D4E78F8139F /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2main.a";
|
||||
targetProxy = 7A9F66C857A744F136C82CE7 /* PBXContainerItemProxy */;
|
||||
};
|
||||
2D6224285416717E08173EAD /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2.a";
|
||||
targetProxy = 76BE5E68237D14A7006F1192 /* PBXContainerItemProxy */;
|
||||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
651834BD7ABC59AE61127244 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "teststreaming";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
37C665BD71C07DAE39DB0359 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "teststreaming";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
42E4297821EB03C0661F2D54 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "teststreaming";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
6796467F7C06764616332AE5 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "teststreaming";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
05AF41094A51130770D800E4 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
00B4382A7EF269B77D616E4E /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
1132085309E401543268778F /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
4C4C43F8535050187F2D1804 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
16242E351F194FF65F771AE5 /* Build configuration list for PBXNativeTarget "teststreaming" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
651834BD7ABC59AE61127244 /* Debug Universal */,
|
||||
37C665BD71C07DAE39DB0359 /* Debug Native */,
|
||||
42E4297821EB03C0661F2D54 /* Release Universal */,
|
||||
6796467F7C06764616332AE5 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "teststreaming" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
05AF41094A51130770D800E4 /* Debug Universal */,
|
||||
00B4382A7EF269B77D616E4E /* Debug Native */,
|
||||
1132085309E401543268778F /* Release Universal */,
|
||||
4C4C43F8535050187F2D1804 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
|
||||
};
|
||||
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
|
||||
}
|
457
premake/Xcode/Xcode3/tests/testthread/testthread.xcodeproj/project.pbxproj
Executable file
457
premake/Xcode/Xcode3/tests/testthread/testthread.xcodeproj/project.pbxproj
Executable file
|
@ -0,0 +1,457 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 45;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
35213261134328003C164DCC /* testthread.c in Sources */ = {isa = PBXBuildFile; fileRef = 62744D221EB054A72DBF6ECC /* testthread.c */; };
|
||||
5FE61B50452A4F3A025A07EE /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 61E86E5810DA1218058D7F05 /* AudioToolbox.framework */; };
|
||||
1CDE462B612158DC56436167 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3FB53A142E7C04B131AF60B7 /* AudioUnit.framework */; };
|
||||
32AC74004CBA5DE11B0B0F45 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 54F55C097F9208C005565BD3 /* Cocoa.framework */; };
|
||||
5D0B286037AC23DA67154CB9 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 2254502358BA512C22620E25 /* CoreAudio.framework */; };
|
||||
4BE566F378B35F5C39FF3450 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D9873DF73A16D6469231A6A /* IOKit.framework */; };
|
||||
44F224D13B105209689A0E41 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 747A165D604F2020484870A2 /* Carbon.framework */; };
|
||||
293822431C5B46857C012DDA /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6A5D29B153AF28416A7F460B /* ForceFeedback.framework */; };
|
||||
27297CC17F42639B5EE2035D /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 58C37721239B4B266D173C61 /* CoreFoundation.framework */; };
|
||||
0EE435A85A430E423A1A2B66 /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 54AD5A0329425E1A7F41340C /* OpenGL.framework */; };
|
||||
39D35C8525C2098476340C5C /* libSDL2main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 500A69B241F07D6E00F6539A /* libSDL2main.a */; };
|
||||
40FA75F122A8667047931606 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 0DE573AE3E46757763841538 /* libSDL2.a */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
77F70C1273611C6F52E54034 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 54FC11132A371CB4054F3547 /* SDL2main.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 58DC62993160374E09FF7AD6;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
177C7C892D4B4AA67FF60081 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 54FC11132A371CB4054F3547 /* SDL2main.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 0E7126A94A11494963D3548B;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
46151D864AD30A2264966480 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 168B12782E8D663D59F23F4B /* SDL2.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 07D004B11E733F1F0EA93105;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
4B6C53A062BB6F64479473AE /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 168B12782E8D663D59F23F4B /* SDL2.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 58C10ED14175754444033E0E;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
62744D221EB054A72DBF6ECC /* testthread.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testthread.c"; path = "../../../../../test/testthread.c"; sourceTree = "<group>"; };
|
||||
61E86E5810DA1218058D7F05 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioToolbox.framework"; path = "/System/Library/Frameworks/AudioToolbox.framework"; sourceTree = "<absolute>"; };
|
||||
3FB53A142E7C04B131AF60B7 /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioUnit.framework"; path = "/System/Library/Frameworks/AudioUnit.framework"; sourceTree = "<absolute>"; };
|
||||
54F55C097F9208C005565BD3 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Cocoa.framework"; path = "/System/Library/Frameworks/Cocoa.framework"; sourceTree = "<absolute>"; };
|
||||
2254502358BA512C22620E25 /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreAudio.framework"; path = "/System/Library/Frameworks/CoreAudio.framework"; sourceTree = "<absolute>"; };
|
||||
1D9873DF73A16D6469231A6A /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "IOKit.framework"; path = "/System/Library/Frameworks/IOKit.framework"; sourceTree = "<absolute>"; };
|
||||
747A165D604F2020484870A2 /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Carbon.framework"; path = "/System/Library/Frameworks/Carbon.framework"; sourceTree = "<absolute>"; };
|
||||
6A5D29B153AF28416A7F460B /* ForceFeedback.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "ForceFeedback.framework"; path = "/System/Library/Frameworks/ForceFeedback.framework"; sourceTree = "<absolute>"; };
|
||||
58C37721239B4B266D173C61 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreFoundation.framework"; path = "/System/Library/Frameworks/CoreFoundation.framework"; sourceTree = "<absolute>"; };
|
||||
54AD5A0329425E1A7F41340C /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "OpenGL.framework"; path = "/System/Library/Frameworks/OpenGL.framework"; sourceTree = "<absolute>"; };
|
||||
41737E465E3319127D3C2499 /* testthread */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = "testthread"; path = "testthread"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
54FC11132A371CB4054F3547 /* SDL2main.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2main.xcodeproj"; path = "../../SDL2main/SDL2main.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
168B12782E8D663D59F23F4B /* SDL2.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2.xcodeproj"; path = "../../SDL2/SDL2.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
4700007F3E1F074D7E8B03ED /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
5FE61B50452A4F3A025A07EE /* AudioToolbox.framework in Frameworks */,
|
||||
1CDE462B612158DC56436167 /* AudioUnit.framework in Frameworks */,
|
||||
32AC74004CBA5DE11B0B0F45 /* Cocoa.framework in Frameworks */,
|
||||
5D0B286037AC23DA67154CB9 /* CoreAudio.framework in Frameworks */,
|
||||
4BE566F378B35F5C39FF3450 /* IOKit.framework in Frameworks */,
|
||||
44F224D13B105209689A0E41 /* Carbon.framework in Frameworks */,
|
||||
293822431C5B46857C012DDA /* ForceFeedback.framework in Frameworks */,
|
||||
27297CC17F42639B5EE2035D /* CoreFoundation.framework in Frameworks */,
|
||||
0EE435A85A430E423A1A2B66 /* OpenGL.framework in Frameworks */,
|
||||
39D35C8525C2098476340C5C /* libSDL2main.a in Frameworks */,
|
||||
40FA75F122A8667047931606 /* libSDL2.a in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
213340E446C96252331F6C01 /* testthread */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
66AE2FF133FC20E4198240D6 /* test */,
|
||||
3B5561B61103754713F35373 /* Frameworks */,
|
||||
490A3E9940BE055277566E68 /* Products */,
|
||||
16BA26944AB42BED0563622C /* Projects */,
|
||||
);
|
||||
name = "testthread";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
66AE2FF133FC20E4198240D6 /* test */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
62744D221EB054A72DBF6ECC /* testthread.c */,
|
||||
);
|
||||
name = "test";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
3B5561B61103754713F35373 /* Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
61E86E5810DA1218058D7F05 /* AudioToolbox.framework */,
|
||||
3FB53A142E7C04B131AF60B7 /* AudioUnit.framework */,
|
||||
54F55C097F9208C005565BD3 /* Cocoa.framework */,
|
||||
2254502358BA512C22620E25 /* CoreAudio.framework */,
|
||||
1D9873DF73A16D6469231A6A /* IOKit.framework */,
|
||||
747A165D604F2020484870A2 /* Carbon.framework */,
|
||||
6A5D29B153AF28416A7F460B /* ForceFeedback.framework */,
|
||||
58C37721239B4B266D173C61 /* CoreFoundation.framework */,
|
||||
54AD5A0329425E1A7F41340C /* OpenGL.framework */,
|
||||
);
|
||||
name = "Frameworks";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
490A3E9940BE055277566E68 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
41737E465E3319127D3C2499 /* testthread */,
|
||||
);
|
||||
name = "Products";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
16BA26944AB42BED0563622C /* Projects */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
54FC11132A371CB4054F3547 /* SDL2main.xcodeproj */,
|
||||
168B12782E8D663D59F23F4B /* SDL2.xcodeproj */,
|
||||
);
|
||||
name = "Projects";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
7EF6583068121C260D4950B0 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
500A69B241F07D6E00F6539A /* libSDL2main.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
75AC2C5538B24E912EAF7B17 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
0DE573AE3E46757763841538 /* libSDL2.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
513F117C6C4C207175DB2ABD /* testthread */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 01E01EA916271687051A2652 /* Build configuration list for PBXNativeTarget "testthread" */;
|
||||
buildPhases = (
|
||||
6B6D5D1B1F55322A0FDD1DA7 /* Resources */,
|
||||
4B1011D7567C14523D7F1AF2 /* Sources */,
|
||||
4700007F3E1F074D7E8B03ED /* Frameworks */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
44CE64AC0D075A681B5E4CA5 /* PBXTargetDependency */,
|
||||
5F6D256B254653457C6E4C1D /* PBXTargetDependency */,
|
||||
);
|
||||
name = "testthread";
|
||||
productInstallPath = "$(HOME)/bin";
|
||||
productName = "testthread";
|
||||
productReference = 41737E465E3319127D3C2499 /* testthread */;
|
||||
productType = "com.apple.product-type.tool";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
08FB7793FE84155DC02AAC07 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
buildConfigurationList = 1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testthread" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
hasScannedForEncodings = 1;
|
||||
mainGroup = 213340E446C96252331F6C01 /* testthread */;
|
||||
projectDirPath = "";
|
||||
projectReferences = (
|
||||
{
|
||||
ProductGroup = 7EF6583068121C260D4950B0 /* Products */;
|
||||
ProjectRef = 54FC11132A371CB4054F3547 /* SDL2main.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 75AC2C5538B24E912EAF7B17 /* Products */;
|
||||
ProjectRef = 168B12782E8D663D59F23F4B /* SDL2.xcodeproj */;
|
||||
},
|
||||
);
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
513F117C6C4C207175DB2ABD /* testthread */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXReferenceProxy section */
|
||||
500A69B241F07D6E00F6539A /* libSDL2main.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2main.a";
|
||||
remoteRef = 77F70C1273611C6F52E54034 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
0DE573AE3E46757763841538 /* libSDL2.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2.a";
|
||||
remoteRef = 46151D864AD30A2264966480 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
/* End PBXReferenceProxy section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
6B6D5D1B1F55322A0FDD1DA7 /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
4B1011D7567C14523D7F1AF2 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
35213261134328003C164DCC /* testthread.c in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXVariantGroup section */
|
||||
/* End PBXVariantGroup section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
44CE64AC0D075A681B5E4CA5 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2main.a";
|
||||
targetProxy = 177C7C892D4B4AA67FF60081 /* PBXContainerItemProxy */;
|
||||
};
|
||||
5F6D256B254653457C6E4C1D /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2.a";
|
||||
targetProxy = 4B6C53A062BB6F64479473AE /* PBXContainerItemProxy */;
|
||||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
41810FD36E064D052AD31709 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testthread";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
019B704A23640E7260FA75B0 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testthread";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
0D1704B65F6C5D010A855C23 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testthread";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
0FCC32B4651505B32E3A642F /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testthread";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
6EEB3E43225D2C3A3D457FFE /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
30BD51C01613660E457D1E40 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
394241E765B57185689269EA /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
69103C962724337E46395806 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
01E01EA916271687051A2652 /* Build configuration list for PBXNativeTarget "testthread" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
41810FD36E064D052AD31709 /* Debug Universal */,
|
||||
019B704A23640E7260FA75B0 /* Debug Native */,
|
||||
0D1704B65F6C5D010A855C23 /* Release Universal */,
|
||||
0FCC32B4651505B32E3A642F /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testthread" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
6EEB3E43225D2C3A3D457FFE /* Debug Universal */,
|
||||
30BD51C01613660E457D1E40 /* Debug Native */,
|
||||
394241E765B57185689269EA /* Release Universal */,
|
||||
69103C962724337E46395806 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
|
||||
};
|
||||
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
|
||||
}
|
457
premake/Xcode/Xcode3/tests/testtimer/testtimer.xcodeproj/project.pbxproj
Executable file
457
premake/Xcode/Xcode3/tests/testtimer/testtimer.xcodeproj/project.pbxproj
Executable file
|
@ -0,0 +1,457 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 45;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
7B64021D5808756776C306BF /* testtimer.c in Sources */ = {isa = PBXBuildFile; fileRef = 22293F957F2711D97BE30CC9 /* testtimer.c */; };
|
||||
13F35686187C26DC67E311BA /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 59DB50ED16A5452649322B1D /* AudioToolbox.framework */; };
|
||||
08C150FB43E435D67A1239D5 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4BAC239C69E54EC71F2968F0 /* AudioUnit.framework */; };
|
||||
294C7A37608D633F4876781D /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7FCE587F1D867D250B9D0AF4 /* Cocoa.framework */; };
|
||||
73EC35FD16EE11A117EC26B5 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4BEF55F007556CBF162825F6 /* CoreAudio.framework */; };
|
||||
19DF001C5A3D5F540DA70DED /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 600C4147227742EE2E68407C /* IOKit.framework */; };
|
||||
1A197D67240E52331CFC2424 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7AF7093922A179FF070424A4 /* Carbon.framework */; };
|
||||
7D9775EB412907CE0DF82667 /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4BAC129468810A51532E27A0 /* ForceFeedback.framework */; };
|
||||
3B0822D6406677340EF37654 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 38440E44450A17785BCB1BCD /* CoreFoundation.framework */; };
|
||||
2EF17062498F59832B3752BF /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0D37571765C244EA1A325C9C /* OpenGL.framework */; };
|
||||
0772793F37435116345630AE /* libSDL2main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 08006ACB69B42AA67BCF53B0 /* libSDL2main.a */; };
|
||||
0AB1254765E46EB803F0183D /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 341F7FBC474100F24D213FDE /* libSDL2.a */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
32C14D2F548E6BAC03F77804 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 697F233E5B4527790BD82DE8 /* SDL2main.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 58DC62993160374E09FF7AD6;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
0662119B0F20094B3237701F /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 697F233E5B4527790BD82DE8 /* SDL2main.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 0E7126A94A11494963D3548B;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
209B3D4C017327D60F250349 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 6F8E5D8A11FF021C396C63DA /* SDL2.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 07D004B11E733F1F0EA93105;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
2E5850DC3F883A377C9E1B29 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 6F8E5D8A11FF021C396C63DA /* SDL2.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 58C10ED14175754444033E0E;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
22293F957F2711D97BE30CC9 /* testtimer.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testtimer.c"; path = "../../../../../test/testtimer.c"; sourceTree = "<group>"; };
|
||||
59DB50ED16A5452649322B1D /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioToolbox.framework"; path = "/System/Library/Frameworks/AudioToolbox.framework"; sourceTree = "<absolute>"; };
|
||||
4BAC239C69E54EC71F2968F0 /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioUnit.framework"; path = "/System/Library/Frameworks/AudioUnit.framework"; sourceTree = "<absolute>"; };
|
||||
7FCE587F1D867D250B9D0AF4 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Cocoa.framework"; path = "/System/Library/Frameworks/Cocoa.framework"; sourceTree = "<absolute>"; };
|
||||
4BEF55F007556CBF162825F6 /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreAudio.framework"; path = "/System/Library/Frameworks/CoreAudio.framework"; sourceTree = "<absolute>"; };
|
||||
600C4147227742EE2E68407C /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "IOKit.framework"; path = "/System/Library/Frameworks/IOKit.framework"; sourceTree = "<absolute>"; };
|
||||
7AF7093922A179FF070424A4 /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Carbon.framework"; path = "/System/Library/Frameworks/Carbon.framework"; sourceTree = "<absolute>"; };
|
||||
4BAC129468810A51532E27A0 /* ForceFeedback.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "ForceFeedback.framework"; path = "/System/Library/Frameworks/ForceFeedback.framework"; sourceTree = "<absolute>"; };
|
||||
38440E44450A17785BCB1BCD /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreFoundation.framework"; path = "/System/Library/Frameworks/CoreFoundation.framework"; sourceTree = "<absolute>"; };
|
||||
0D37571765C244EA1A325C9C /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "OpenGL.framework"; path = "/System/Library/Frameworks/OpenGL.framework"; sourceTree = "<absolute>"; };
|
||||
2BA90F533D2C35CE0EE821BB /* testtimer */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = "testtimer"; path = "testtimer"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
697F233E5B4527790BD82DE8 /* SDL2main.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2main.xcodeproj"; path = "../../SDL2main/SDL2main.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
6F8E5D8A11FF021C396C63DA /* SDL2.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2.xcodeproj"; path = "../../SDL2/SDL2.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
59EA1639021D3F4F7AC86D7A /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
13F35686187C26DC67E311BA /* AudioToolbox.framework in Frameworks */,
|
||||
08C150FB43E435D67A1239D5 /* AudioUnit.framework in Frameworks */,
|
||||
294C7A37608D633F4876781D /* Cocoa.framework in Frameworks */,
|
||||
73EC35FD16EE11A117EC26B5 /* CoreAudio.framework in Frameworks */,
|
||||
19DF001C5A3D5F540DA70DED /* IOKit.framework in Frameworks */,
|
||||
1A197D67240E52331CFC2424 /* Carbon.framework in Frameworks */,
|
||||
7D9775EB412907CE0DF82667 /* ForceFeedback.framework in Frameworks */,
|
||||
3B0822D6406677340EF37654 /* CoreFoundation.framework in Frameworks */,
|
||||
2EF17062498F59832B3752BF /* OpenGL.framework in Frameworks */,
|
||||
0772793F37435116345630AE /* libSDL2main.a in Frameworks */,
|
||||
0AB1254765E46EB803F0183D /* libSDL2.a in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
2A3C61D921751E2A596D0B43 /* testtimer */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
0C9320211078719C5CCC7EFD /* test */,
|
||||
213A271506811AED7E1C6A94 /* Frameworks */,
|
||||
0C6224BB0611706E7C390B7D /* Products */,
|
||||
6A363F94345F4A4D427A79A1 /* Projects */,
|
||||
);
|
||||
name = "testtimer";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
0C9320211078719C5CCC7EFD /* test */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
22293F957F2711D97BE30CC9 /* testtimer.c */,
|
||||
);
|
||||
name = "test";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
213A271506811AED7E1C6A94 /* Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
59DB50ED16A5452649322B1D /* AudioToolbox.framework */,
|
||||
4BAC239C69E54EC71F2968F0 /* AudioUnit.framework */,
|
||||
7FCE587F1D867D250B9D0AF4 /* Cocoa.framework */,
|
||||
4BEF55F007556CBF162825F6 /* CoreAudio.framework */,
|
||||
600C4147227742EE2E68407C /* IOKit.framework */,
|
||||
7AF7093922A179FF070424A4 /* Carbon.framework */,
|
||||
4BAC129468810A51532E27A0 /* ForceFeedback.framework */,
|
||||
38440E44450A17785BCB1BCD /* CoreFoundation.framework */,
|
||||
0D37571765C244EA1A325C9C /* OpenGL.framework */,
|
||||
);
|
||||
name = "Frameworks";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
0C6224BB0611706E7C390B7D /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
2BA90F533D2C35CE0EE821BB /* testtimer */,
|
||||
);
|
||||
name = "Products";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
6A363F94345F4A4D427A79A1 /* Projects */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
697F233E5B4527790BD82DE8 /* SDL2main.xcodeproj */,
|
||||
6F8E5D8A11FF021C396C63DA /* SDL2.xcodeproj */,
|
||||
);
|
||||
name = "Projects";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
2D3E6AEA3B0428970CDF1AF4 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
08006ACB69B42AA67BCF53B0 /* libSDL2main.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
62FE45F1775D285645F8488E /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
341F7FBC474100F24D213FDE /* libSDL2.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
1F0F244D534C4D1B32E764E0 /* testtimer */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 069B2C7817DD3A9C768A7832 /* Build configuration list for PBXNativeTarget "testtimer" */;
|
||||
buildPhases = (
|
||||
438B662D3476654319572741 /* Resources */,
|
||||
20CB29B81AA1608556B53AD0 /* Sources */,
|
||||
59EA1639021D3F4F7AC86D7A /* Frameworks */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
15C01811098725315C840603 /* PBXTargetDependency */,
|
||||
517D6C4E040B778751987EC8 /* PBXTargetDependency */,
|
||||
);
|
||||
name = "testtimer";
|
||||
productInstallPath = "$(HOME)/bin";
|
||||
productName = "testtimer";
|
||||
productReference = 2BA90F533D2C35CE0EE821BB /* testtimer */;
|
||||
productType = "com.apple.product-type.tool";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
08FB7793FE84155DC02AAC07 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
buildConfigurationList = 1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testtimer" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
hasScannedForEncodings = 1;
|
||||
mainGroup = 2A3C61D921751E2A596D0B43 /* testtimer */;
|
||||
projectDirPath = "";
|
||||
projectReferences = (
|
||||
{
|
||||
ProductGroup = 2D3E6AEA3B0428970CDF1AF4 /* Products */;
|
||||
ProjectRef = 697F233E5B4527790BD82DE8 /* SDL2main.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 62FE45F1775D285645F8488E /* Products */;
|
||||
ProjectRef = 6F8E5D8A11FF021C396C63DA /* SDL2.xcodeproj */;
|
||||
},
|
||||
);
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
1F0F244D534C4D1B32E764E0 /* testtimer */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXReferenceProxy section */
|
||||
08006ACB69B42AA67BCF53B0 /* libSDL2main.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2main.a";
|
||||
remoteRef = 32C14D2F548E6BAC03F77804 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
341F7FBC474100F24D213FDE /* libSDL2.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2.a";
|
||||
remoteRef = 209B3D4C017327D60F250349 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
/* End PBXReferenceProxy section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
438B662D3476654319572741 /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
20CB29B81AA1608556B53AD0 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
7B64021D5808756776C306BF /* testtimer.c in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXVariantGroup section */
|
||||
/* End PBXVariantGroup section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
15C01811098725315C840603 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2main.a";
|
||||
targetProxy = 0662119B0F20094B3237701F /* PBXContainerItemProxy */;
|
||||
};
|
||||
517D6C4E040B778751987EC8 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2.a";
|
||||
targetProxy = 2E5850DC3F883A377C9E1B29 /* PBXContainerItemProxy */;
|
||||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
5B5201CD5C61059315160862 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testtimer";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
447031E408EE5E531E0D7235 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testtimer";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
7E9248C5328360650A786F20 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testtimer";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
72D91F3A3DA959814FCD588B /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testtimer";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
677744B358021FD634594C31 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
010A4E8334CB0D2C617372DC /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
40E1047F345201CA036918EE /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
2D81007B408A511C0D1500B4 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
069B2C7817DD3A9C768A7832 /* Build configuration list for PBXNativeTarget "testtimer" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
5B5201CD5C61059315160862 /* Debug Universal */,
|
||||
447031E408EE5E531E0D7235 /* Debug Native */,
|
||||
7E9248C5328360650A786F20 /* Release Universal */,
|
||||
72D91F3A3DA959814FCD588B /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testtimer" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
677744B358021FD634594C31 /* Debug Universal */,
|
||||
010A4E8334CB0D2C617372DC /* Debug Native */,
|
||||
40E1047F345201CA036918EE /* Release Universal */,
|
||||
2D81007B408A511C0D1500B4 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
|
||||
};
|
||||
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
|
||||
}
|
457
premake/Xcode/Xcode3/tests/testver/testver.xcodeproj/project.pbxproj
Executable file
457
premake/Xcode/Xcode3/tests/testver/testver.xcodeproj/project.pbxproj
Executable file
|
@ -0,0 +1,457 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 45;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
6014781151E5187D528723EF /* testver.c in Sources */ = {isa = PBXBuildFile; fileRef = 6B6E22E11F8848E33DA408B5 /* testver.c */; };
|
||||
5E694906601863BD26484E1A /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7EEC3B2E5C516CF444E07100 /* AudioToolbox.framework */; };
|
||||
40844E75202C46C674FC6E3D /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3B6C2F9222654F643FB72B39 /* AudioUnit.framework */; };
|
||||
51EA10F0387055E76C16517F /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0C8064FA612620554B384DB7 /* Cocoa.framework */; };
|
||||
0AA62A9A179074774C2A62A5 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 729D379958F428DF503A3419 /* CoreAudio.framework */; };
|
||||
354E4CAD736522D764C841F4 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4D8F1F80456F146E54A12F69 /* IOKit.framework */; };
|
||||
76F75A2345D94CCE0894324B /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3A9547275EFD3F9E40524AB9 /* Carbon.framework */; };
|
||||
3D412E44067570B904B5148F /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0F10718F74EE72460B2B53E0 /* ForceFeedback.framework */; };
|
||||
52E8289C257550997213758F /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 6359786E2B1D1C053CEB0D3B /* CoreFoundation.framework */; };
|
||||
1B8633BE3CF116D51EA17524 /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 37D30F5260F713FE171022A9 /* OpenGL.framework */; };
|
||||
139738C34B68369115722D3C /* libSDL2main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 55F14A235AE31CD4262346F7 /* libSDL2main.a */; };
|
||||
0B984D0D20527570170D79FC /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2F5645B120637F3775D905E5 /* libSDL2.a */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
685F569F02837F954ADE743D /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 22B66475709B098C69197BD2 /* SDL2main.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 58DC62993160374E09FF7AD6;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
72786455348A513E6CED7348 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 22B66475709B098C69197BD2 /* SDL2main.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 0E7126A94A11494963D3548B;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
2E48267038BB153158527C71 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 6A2F6D7A044147804F6F120F /* SDL2.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 07D004B11E733F1F0EA93105;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
65C432673F726D01098111FA /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 6A2F6D7A044147804F6F120F /* SDL2.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 58C10ED14175754444033E0E;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
6B6E22E11F8848E33DA408B5 /* testver.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testver.c"; path = "../../../../../test/testver.c"; sourceTree = "<group>"; };
|
||||
7EEC3B2E5C516CF444E07100 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioToolbox.framework"; path = "/System/Library/Frameworks/AudioToolbox.framework"; sourceTree = "<absolute>"; };
|
||||
3B6C2F9222654F643FB72B39 /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioUnit.framework"; path = "/System/Library/Frameworks/AudioUnit.framework"; sourceTree = "<absolute>"; };
|
||||
0C8064FA612620554B384DB7 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Cocoa.framework"; path = "/System/Library/Frameworks/Cocoa.framework"; sourceTree = "<absolute>"; };
|
||||
729D379958F428DF503A3419 /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreAudio.framework"; path = "/System/Library/Frameworks/CoreAudio.framework"; sourceTree = "<absolute>"; };
|
||||
4D8F1F80456F146E54A12F69 /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "IOKit.framework"; path = "/System/Library/Frameworks/IOKit.framework"; sourceTree = "<absolute>"; };
|
||||
3A9547275EFD3F9E40524AB9 /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Carbon.framework"; path = "/System/Library/Frameworks/Carbon.framework"; sourceTree = "<absolute>"; };
|
||||
0F10718F74EE72460B2B53E0 /* ForceFeedback.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "ForceFeedback.framework"; path = "/System/Library/Frameworks/ForceFeedback.framework"; sourceTree = "<absolute>"; };
|
||||
6359786E2B1D1C053CEB0D3B /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreFoundation.framework"; path = "/System/Library/Frameworks/CoreFoundation.framework"; sourceTree = "<absolute>"; };
|
||||
37D30F5260F713FE171022A9 /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "OpenGL.framework"; path = "/System/Library/Frameworks/OpenGL.framework"; sourceTree = "<absolute>"; };
|
||||
5DB74E8116BC4C6530217502 /* testver */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = "testver"; path = "testver"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
22B66475709B098C69197BD2 /* SDL2main.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2main.xcodeproj"; path = "../../SDL2main/SDL2main.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
6A2F6D7A044147804F6F120F /* SDL2.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2.xcodeproj"; path = "../../SDL2/SDL2.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
49B25FDC134C7A2A5B927661 /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
5E694906601863BD26484E1A /* AudioToolbox.framework in Frameworks */,
|
||||
40844E75202C46C674FC6E3D /* AudioUnit.framework in Frameworks */,
|
||||
51EA10F0387055E76C16517F /* Cocoa.framework in Frameworks */,
|
||||
0AA62A9A179074774C2A62A5 /* CoreAudio.framework in Frameworks */,
|
||||
354E4CAD736522D764C841F4 /* IOKit.framework in Frameworks */,
|
||||
76F75A2345D94CCE0894324B /* Carbon.framework in Frameworks */,
|
||||
3D412E44067570B904B5148F /* ForceFeedback.framework in Frameworks */,
|
||||
52E8289C257550997213758F /* CoreFoundation.framework in Frameworks */,
|
||||
1B8633BE3CF116D51EA17524 /* OpenGL.framework in Frameworks */,
|
||||
139738C34B68369115722D3C /* libSDL2main.a in Frameworks */,
|
||||
0B984D0D20527570170D79FC /* libSDL2.a in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
11F833D43F53101770FD0C7B /* testver */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
63294E297CC854C77B0271BB /* test */,
|
||||
3B4C1DD744AD6900191D4CA3 /* Frameworks */,
|
||||
27183CDE4E6371D435C25B93 /* Products */,
|
||||
334122EF372B062A59BA520E /* Projects */,
|
||||
);
|
||||
name = "testver";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
63294E297CC854C77B0271BB /* test */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
6B6E22E11F8848E33DA408B5 /* testver.c */,
|
||||
);
|
||||
name = "test";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
3B4C1DD744AD6900191D4CA3 /* Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
7EEC3B2E5C516CF444E07100 /* AudioToolbox.framework */,
|
||||
3B6C2F9222654F643FB72B39 /* AudioUnit.framework */,
|
||||
0C8064FA612620554B384DB7 /* Cocoa.framework */,
|
||||
729D379958F428DF503A3419 /* CoreAudio.framework */,
|
||||
4D8F1F80456F146E54A12F69 /* IOKit.framework */,
|
||||
3A9547275EFD3F9E40524AB9 /* Carbon.framework */,
|
||||
0F10718F74EE72460B2B53E0 /* ForceFeedback.framework */,
|
||||
6359786E2B1D1C053CEB0D3B /* CoreFoundation.framework */,
|
||||
37D30F5260F713FE171022A9 /* OpenGL.framework */,
|
||||
);
|
||||
name = "Frameworks";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
27183CDE4E6371D435C25B93 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
5DB74E8116BC4C6530217502 /* testver */,
|
||||
);
|
||||
name = "Products";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
334122EF372B062A59BA520E /* Projects */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
22B66475709B098C69197BD2 /* SDL2main.xcodeproj */,
|
||||
6A2F6D7A044147804F6F120F /* SDL2.xcodeproj */,
|
||||
);
|
||||
name = "Projects";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
40322E461BBE73D46D320F6F /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
55F14A235AE31CD4262346F7 /* libSDL2main.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
589E74AE7AAF144F04001D06 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
2F5645B120637F3775D905E5 /* libSDL2.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
0D77082F710F18C534BE6183 /* testver */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 23716C682BE236F146315787 /* Build configuration list for PBXNativeTarget "testver" */;
|
||||
buildPhases = (
|
||||
0CED4AD569D07AE1532321B5 /* Resources */,
|
||||
204748170CFF76D3407221CB /* Sources */,
|
||||
49B25FDC134C7A2A5B927661 /* Frameworks */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
3AD528CE0FF40F5F633541C8 /* PBXTargetDependency */,
|
||||
3FFF326116C8557B360861AA /* PBXTargetDependency */,
|
||||
);
|
||||
name = "testver";
|
||||
productInstallPath = "$(HOME)/bin";
|
||||
productName = "testver";
|
||||
productReference = 5DB74E8116BC4C6530217502 /* testver */;
|
||||
productType = "com.apple.product-type.tool";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
08FB7793FE84155DC02AAC07 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
buildConfigurationList = 1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testver" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
hasScannedForEncodings = 1;
|
||||
mainGroup = 11F833D43F53101770FD0C7B /* testver */;
|
||||
projectDirPath = "";
|
||||
projectReferences = (
|
||||
{
|
||||
ProductGroup = 40322E461BBE73D46D320F6F /* Products */;
|
||||
ProjectRef = 22B66475709B098C69197BD2 /* SDL2main.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 589E74AE7AAF144F04001D06 /* Products */;
|
||||
ProjectRef = 6A2F6D7A044147804F6F120F /* SDL2.xcodeproj */;
|
||||
},
|
||||
);
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
0D77082F710F18C534BE6183 /* testver */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXReferenceProxy section */
|
||||
55F14A235AE31CD4262346F7 /* libSDL2main.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2main.a";
|
||||
remoteRef = 685F569F02837F954ADE743D /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
2F5645B120637F3775D905E5 /* libSDL2.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2.a";
|
||||
remoteRef = 2E48267038BB153158527C71 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
/* End PBXReferenceProxy section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
0CED4AD569D07AE1532321B5 /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
204748170CFF76D3407221CB /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
6014781151E5187D528723EF /* testver.c in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXVariantGroup section */
|
||||
/* End PBXVariantGroup section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
3AD528CE0FF40F5F633541C8 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2main.a";
|
||||
targetProxy = 72786455348A513E6CED7348 /* PBXContainerItemProxy */;
|
||||
};
|
||||
3FFF326116C8557B360861AA /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2.a";
|
||||
targetProxy = 65C432673F726D01098111FA /* PBXContainerItemProxy */;
|
||||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
200B57382D1F088E4FF70905 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testver";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
458E1E8567FA792871804B05 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testver";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
0E280C7B0045494B6BEB19AC /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testver";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
424C1D7523CE3B8E02B2147F /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testver";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
43BA739D4B48008676B82CB7 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
40E86CA3015C4F544D593DA0 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
05DF7BBB62432ED070FD00CB /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
47D77AC87E84335A01275818 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
23716C682BE236F146315787 /* Build configuration list for PBXNativeTarget "testver" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
200B57382D1F088E4FF70905 /* Debug Universal */,
|
||||
458E1E8567FA792871804B05 /* Debug Native */,
|
||||
0E280C7B0045494B6BEB19AC /* Release Universal */,
|
||||
424C1D7523CE3B8E02B2147F /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testver" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
43BA739D4B48008676B82CB7 /* Debug Universal */,
|
||||
40E86CA3015C4F544D593DA0 /* Debug Native */,
|
||||
05DF7BBB62432ED070FD00CB /* Release Universal */,
|
||||
47D77AC87E84335A01275818 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
|
||||
};
|
||||
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
|
||||
}
|
500
premake/Xcode/Xcode3/tests/testwm2/testwm2.xcodeproj/project.pbxproj
Executable file
500
premake/Xcode/Xcode3/tests/testwm2/testwm2.xcodeproj/project.pbxproj
Executable file
|
@ -0,0 +1,500 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 45;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
0BE42EAB72F36C7702866C3E /* testwm2.c in Sources */ = {isa = PBXBuildFile; fileRef = 35B30B9D2BA973305B431C79 /* testwm2.c */; };
|
||||
02BA178200D8732B480340AA /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3F3B433238510A9201395B14 /* AudioToolbox.framework */; };
|
||||
2531497A26C41FFB2DFE1CAA /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5A9723A216397B73732E783F /* AudioUnit.framework */; };
|
||||
294839F8023630471AC87C9A /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 1B7D416035FC73F2499D780B /* Cocoa.framework */; };
|
||||
75960A7B1E35508958204E07 /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 14494572789E5DD835710F4A /* CoreAudio.framework */; };
|
||||
0FEA07E415674BD44CE2221A /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 67A17B15236238841E225074 /* IOKit.framework */; };
|
||||
78B22C7E3EC4657C3ED53157 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 607D43CA29AD40A458D50CFF /* Carbon.framework */; };
|
||||
49B245B2311E458D631105B5 /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 70BD41BC43D1767C493D4B07 /* ForceFeedback.framework */; };
|
||||
30654A5B510B5FDD26F012DC /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 62A5002E6CDE23C3601931E1 /* CoreFoundation.framework */; };
|
||||
495C760C1F090E551CD30744 /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4FF1117D3E08144A1FB75727 /* OpenGL.framework */; };
|
||||
15B73C417E775E8C789C760E /* libSDL2main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 2F4656C1319D435B3942325F /* libSDL2main.a */; };
|
||||
2DBD575800C87AB24B62371A /* libSDL2test.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 1D85368D023A6C344FD93913 /* libSDL2test.a */; };
|
||||
19B3571E22DD01C53F4F6318 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 5B047E5801E928BC78040BE3 /* libSDL2.a */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
49F65F4954892A3468AF59B9 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 6B0400622E6E3A5B64172CE7 /* SDL2main.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 58DC62993160374E09FF7AD6;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
11E6192A46CF465107FD024B /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 6B0400622E6E3A5B64172CE7 /* SDL2main.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 0E7126A94A11494963D3548B;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
21E806AD668806325D1D568C /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 281E6FEE01AD198860124328 /* SDL2test.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 1E1175156F97314C291323CB;
|
||||
remoteInfo = "libSDL2test.a";
|
||||
};
|
||||
099722936B22291412D24925 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 281E6FEE01AD198860124328 /* SDL2test.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 7CD70F5D43DA554D66287CFC;
|
||||
remoteInfo = "libSDL2test.a";
|
||||
};
|
||||
2C01777530B566FF16C02CE9 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 2C011B767D7601FD42D544E2 /* SDL2.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 07D004B11E733F1F0EA93105;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
0CAA140978155CF111F45286 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 2C011B767D7601FD42D544E2 /* SDL2.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 58C10ED14175754444033E0E;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
35B30B9D2BA973305B431C79 /* testwm2.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "testwm2.c"; path = "../../../../../test/testwm2.c"; sourceTree = "<group>"; };
|
||||
3F3B433238510A9201395B14 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioToolbox.framework"; path = "/System/Library/Frameworks/AudioToolbox.framework"; sourceTree = "<absolute>"; };
|
||||
5A9723A216397B73732E783F /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioUnit.framework"; path = "/System/Library/Frameworks/AudioUnit.framework"; sourceTree = "<absolute>"; };
|
||||
1B7D416035FC73F2499D780B /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Cocoa.framework"; path = "/System/Library/Frameworks/Cocoa.framework"; sourceTree = "<absolute>"; };
|
||||
14494572789E5DD835710F4A /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreAudio.framework"; path = "/System/Library/Frameworks/CoreAudio.framework"; sourceTree = "<absolute>"; };
|
||||
67A17B15236238841E225074 /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "IOKit.framework"; path = "/System/Library/Frameworks/IOKit.framework"; sourceTree = "<absolute>"; };
|
||||
607D43CA29AD40A458D50CFF /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Carbon.framework"; path = "/System/Library/Frameworks/Carbon.framework"; sourceTree = "<absolute>"; };
|
||||
70BD41BC43D1767C493D4B07 /* ForceFeedback.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "ForceFeedback.framework"; path = "/System/Library/Frameworks/ForceFeedback.framework"; sourceTree = "<absolute>"; };
|
||||
62A5002E6CDE23C3601931E1 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreFoundation.framework"; path = "/System/Library/Frameworks/CoreFoundation.framework"; sourceTree = "<absolute>"; };
|
||||
4FF1117D3E08144A1FB75727 /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "OpenGL.framework"; path = "/System/Library/Frameworks/OpenGL.framework"; sourceTree = "<absolute>"; };
|
||||
07E01726741D59FE3E556A53 /* testwm2 */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = "testwm2"; path = "testwm2"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
6B0400622E6E3A5B64172CE7 /* SDL2main.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2main.xcodeproj"; path = "../../SDL2main/SDL2main.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
281E6FEE01AD198860124328 /* SDL2test.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2test.xcodeproj"; path = "../../SDL2test/SDL2test.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
2C011B767D7601FD42D544E2 /* SDL2.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2.xcodeproj"; path = "../../SDL2/SDL2.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
14610380060F5C6C541555CA /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
02BA178200D8732B480340AA /* AudioToolbox.framework in Frameworks */,
|
||||
2531497A26C41FFB2DFE1CAA /* AudioUnit.framework in Frameworks */,
|
||||
294839F8023630471AC87C9A /* Cocoa.framework in Frameworks */,
|
||||
75960A7B1E35508958204E07 /* CoreAudio.framework in Frameworks */,
|
||||
0FEA07E415674BD44CE2221A /* IOKit.framework in Frameworks */,
|
||||
78B22C7E3EC4657C3ED53157 /* Carbon.framework in Frameworks */,
|
||||
49B245B2311E458D631105B5 /* ForceFeedback.framework in Frameworks */,
|
||||
30654A5B510B5FDD26F012DC /* CoreFoundation.framework in Frameworks */,
|
||||
495C760C1F090E551CD30744 /* OpenGL.framework in Frameworks */,
|
||||
15B73C417E775E8C789C760E /* libSDL2main.a in Frameworks */,
|
||||
2DBD575800C87AB24B62371A /* libSDL2test.a in Frameworks */,
|
||||
19B3571E22DD01C53F4F6318 /* libSDL2.a in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
1D09699575D57C337D881716 /* testwm2 */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
62B85D0C5D6D45B730F13A95 /* test */,
|
||||
678A4C923DF9534372032E2D /* Frameworks */,
|
||||
2CAC771F4C957321357F4473 /* Products */,
|
||||
68737EBC1D3C666D219A2090 /* Projects */,
|
||||
);
|
||||
name = "testwm2";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
62B85D0C5D6D45B730F13A95 /* test */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
35B30B9D2BA973305B431C79 /* testwm2.c */,
|
||||
);
|
||||
name = "test";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
678A4C923DF9534372032E2D /* Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
3F3B433238510A9201395B14 /* AudioToolbox.framework */,
|
||||
5A9723A216397B73732E783F /* AudioUnit.framework */,
|
||||
1B7D416035FC73F2499D780B /* Cocoa.framework */,
|
||||
14494572789E5DD835710F4A /* CoreAudio.framework */,
|
||||
67A17B15236238841E225074 /* IOKit.framework */,
|
||||
607D43CA29AD40A458D50CFF /* Carbon.framework */,
|
||||
70BD41BC43D1767C493D4B07 /* ForceFeedback.framework */,
|
||||
62A5002E6CDE23C3601931E1 /* CoreFoundation.framework */,
|
||||
4FF1117D3E08144A1FB75727 /* OpenGL.framework */,
|
||||
);
|
||||
name = "Frameworks";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
2CAC771F4C957321357F4473 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
07E01726741D59FE3E556A53 /* testwm2 */,
|
||||
);
|
||||
name = "Products";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
68737EBC1D3C666D219A2090 /* Projects */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
6B0400622E6E3A5B64172CE7 /* SDL2main.xcodeproj */,
|
||||
281E6FEE01AD198860124328 /* SDL2test.xcodeproj */,
|
||||
2C011B767D7601FD42D544E2 /* SDL2.xcodeproj */,
|
||||
);
|
||||
name = "Projects";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
6D41569C576B5436603F06AB /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
2F4656C1319D435B3942325F /* libSDL2main.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
053706934CCC7FF400CE1389 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
1D85368D023A6C344FD93913 /* libSDL2test.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
70CB3D756B797AAB28B10A4A /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
5B047E5801E928BC78040BE3 /* libSDL2.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
040021644D381D391EC87B8B /* testwm2 */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 7424155926126AB723AF4B82 /* Build configuration list for PBXNativeTarget "testwm2" */;
|
||||
buildPhases = (
|
||||
4B6F67D309DE6D6A712071FE /* Resources */,
|
||||
74917742401B5C89514A5EE9 /* Sources */,
|
||||
14610380060F5C6C541555CA /* Frameworks */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
0B6411B5332216224D032859 /* PBXTargetDependency */,
|
||||
2F3F521D29963DC7033E09AB /* PBXTargetDependency */,
|
||||
6DB07A415BAB464C451D7F41 /* PBXTargetDependency */,
|
||||
);
|
||||
name = "testwm2";
|
||||
productInstallPath = "$(HOME)/bin";
|
||||
productName = "testwm2";
|
||||
productReference = 07E01726741D59FE3E556A53 /* testwm2 */;
|
||||
productType = "com.apple.product-type.tool";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
08FB7793FE84155DC02AAC07 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
buildConfigurationList = 1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testwm2" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
hasScannedForEncodings = 1;
|
||||
mainGroup = 1D09699575D57C337D881716 /* testwm2 */;
|
||||
projectDirPath = "";
|
||||
projectReferences = (
|
||||
{
|
||||
ProductGroup = 6D41569C576B5436603F06AB /* Products */;
|
||||
ProjectRef = 6B0400622E6E3A5B64172CE7 /* SDL2main.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 053706934CCC7FF400CE1389 /* Products */;
|
||||
ProjectRef = 281E6FEE01AD198860124328 /* SDL2test.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 70CB3D756B797AAB28B10A4A /* Products */;
|
||||
ProjectRef = 2C011B767D7601FD42D544E2 /* SDL2.xcodeproj */;
|
||||
},
|
||||
);
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
040021644D381D391EC87B8B /* testwm2 */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXReferenceProxy section */
|
||||
2F4656C1319D435B3942325F /* libSDL2main.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2main.a";
|
||||
remoteRef = 49F65F4954892A3468AF59B9 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
1D85368D023A6C344FD93913 /* libSDL2test.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2test.a";
|
||||
remoteRef = 21E806AD668806325D1D568C /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
5B047E5801E928BC78040BE3 /* libSDL2.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2.a";
|
||||
remoteRef = 2C01777530B566FF16C02CE9 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
/* End PBXReferenceProxy section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
4B6F67D309DE6D6A712071FE /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
74917742401B5C89514A5EE9 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
0BE42EAB72F36C7702866C3E /* testwm2.c in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXVariantGroup section */
|
||||
/* End PBXVariantGroup section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
0B6411B5332216224D032859 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2main.a";
|
||||
targetProxy = 11E6192A46CF465107FD024B /* PBXContainerItemProxy */;
|
||||
};
|
||||
2F3F521D29963DC7033E09AB /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2test.a";
|
||||
targetProxy = 099722936B22291412D24925 /* PBXContainerItemProxy */;
|
||||
};
|
||||
6DB07A415BAB464C451D7F41 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2.a";
|
||||
targetProxy = 0CAA140978155CF111F45286 /* PBXContainerItemProxy */;
|
||||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
21745AB753B5396747C850CC /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testwm2";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
1FA85E282A6B581D6B67455E /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testwm2";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
46C62A8339C80E652667525F /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testwm2";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
153152C87B3E483F379E7211 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "testwm2";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
21BC41E2666D0061196139E7 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
322B588A51FC7CBD74E32330 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
0F132F51083F1502419B3ED6 /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
55040782070F03AE2C4847F0 /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
7424155926126AB723AF4B82 /* Build configuration list for PBXNativeTarget "testwm2" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
21745AB753B5396747C850CC /* Debug Universal */,
|
||||
1FA85E282A6B581D6B67455E /* Debug Native */,
|
||||
46C62A8339C80E652667525F /* Release Universal */,
|
||||
153152C87B3E483F379E7211 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "testwm2" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
21BC41E2666D0061196139E7 /* Debug Universal */,
|
||||
322B588A51FC7CBD74E32330 /* Debug Native */,
|
||||
0F132F51083F1502419B3ED6 /* Release Universal */,
|
||||
55040782070F03AE2C4847F0 /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
|
||||
};
|
||||
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
|
||||
}
|
457
premake/Xcode/Xcode3/tests/torturethread/torturethread.xcodeproj/project.pbxproj
Executable file
457
premake/Xcode/Xcode3/tests/torturethread/torturethread.xcodeproj/project.pbxproj
Executable file
|
@ -0,0 +1,457 @@
|
|||
// !$*UTF8*$!
|
||||
{
|
||||
archiveVersion = 1;
|
||||
classes = {
|
||||
};
|
||||
objectVersion = 45;
|
||||
objects = {
|
||||
|
||||
/* Begin PBXBuildFile section */
|
||||
0B1A6B465F267277727F1F6A /* torturethread.c in Sources */ = {isa = PBXBuildFile; fileRef = 5FA75DEA52290DD6605A4165 /* torturethread.c */; };
|
||||
0CB40A2C6B384AFE1F85723A /* AudioToolbox.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 79E670F651C62A887F6A3215 /* AudioToolbox.framework */; };
|
||||
41B152CD3C1934387F884871 /* AudioUnit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 483C7AD419A54986085D3C48 /* AudioUnit.framework */; };
|
||||
4AAE7E7E0A5653E768C911A7 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0ACC6B776AC5494213B245D5 /* Cocoa.framework */; };
|
||||
59D67481676E7E4D1C56615B /* CoreAudio.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 00142FCB5AC003C512F6094D /* CoreAudio.framework */; };
|
||||
3FE91A7D412638F432DE3092 /* IOKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 23342F6529E525F2711B4A7C /* IOKit.framework */; };
|
||||
3B603B2925A51C443AE06C31 /* Carbon.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4DE1115E4433107A54200280 /* Carbon.framework */; };
|
||||
354E39343B790A977606178E /* ForceFeedback.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 36EE5D451D1849841BF45B78 /* ForceFeedback.framework */; };
|
||||
093E72445180495D2C004D65 /* CoreFoundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 7E321F3300CF2F895F7F1C47 /* CoreFoundation.framework */; };
|
||||
38FF0DD1184645800F951B47 /* OpenGL.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 40701A1D6AD506C4546D7276 /* OpenGL.framework */; };
|
||||
3ED8149145C136443C2A20C4 /* libSDL2main.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 774C249D69042D1A42DF6270 /* libSDL2main.a */; };
|
||||
6F343F4955834AD4658C4DF4 /* libSDL2.a in Frameworks */ = {isa = PBXBuildFile; fileRef = 6ACA22173E33236140FF5CCC /* libSDL2.a */; };
|
||||
/* End PBXBuildFile section */
|
||||
|
||||
/* Begin PBXContainerItemProxy section */
|
||||
5B10199654223EDE16005ABF /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 49211B7E24B9724343D8399B /* SDL2main.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 58DC62993160374E09FF7AD6;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
492C0DDD39AC709960CA1D3B /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 49211B7E24B9724343D8399B /* SDL2main.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 0E7126A94A11494963D3548B;
|
||||
remoteInfo = "libSDL2main.a";
|
||||
};
|
||||
281A4C152FA91B280FFD4166 /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 2A972B8803A774F925DC2034 /* SDL2.xcodeproj */;
|
||||
proxyType = 2;
|
||||
remoteGlobalIDString = 07D004B11E733F1F0EA93105;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
24F701915BCC641934B646BE /* PBXContainerItemProxy */ = {
|
||||
isa = PBXContainerItemProxy;
|
||||
containerPortal = 2A972B8803A774F925DC2034 /* SDL2.xcodeproj */;
|
||||
proxyType = 1;
|
||||
remoteGlobalIDString = 58C10ED14175754444033E0E;
|
||||
remoteInfo = "libSDL2.a";
|
||||
};
|
||||
/* End PBXContainerItemProxy section */
|
||||
|
||||
/* Begin PBXFileReference section */
|
||||
5FA75DEA52290DD6605A4165 /* torturethread.c */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.c; name = "torturethread.c"; path = "../../../../../test/torturethread.c"; sourceTree = "<group>"; };
|
||||
79E670F651C62A887F6A3215 /* AudioToolbox.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioToolbox.framework"; path = "/System/Library/Frameworks/AudioToolbox.framework"; sourceTree = "<absolute>"; };
|
||||
483C7AD419A54986085D3C48 /* AudioUnit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "AudioUnit.framework"; path = "/System/Library/Frameworks/AudioUnit.framework"; sourceTree = "<absolute>"; };
|
||||
0ACC6B776AC5494213B245D5 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Cocoa.framework"; path = "/System/Library/Frameworks/Cocoa.framework"; sourceTree = "<absolute>"; };
|
||||
00142FCB5AC003C512F6094D /* CoreAudio.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreAudio.framework"; path = "/System/Library/Frameworks/CoreAudio.framework"; sourceTree = "<absolute>"; };
|
||||
23342F6529E525F2711B4A7C /* IOKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "IOKit.framework"; path = "/System/Library/Frameworks/IOKit.framework"; sourceTree = "<absolute>"; };
|
||||
4DE1115E4433107A54200280 /* Carbon.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "Carbon.framework"; path = "/System/Library/Frameworks/Carbon.framework"; sourceTree = "<absolute>"; };
|
||||
36EE5D451D1849841BF45B78 /* ForceFeedback.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "ForceFeedback.framework"; path = "/System/Library/Frameworks/ForceFeedback.framework"; sourceTree = "<absolute>"; };
|
||||
7E321F3300CF2F895F7F1C47 /* CoreFoundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "CoreFoundation.framework"; path = "/System/Library/Frameworks/CoreFoundation.framework"; sourceTree = "<absolute>"; };
|
||||
40701A1D6AD506C4546D7276 /* OpenGL.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = "OpenGL.framework"; path = "/System/Library/Frameworks/OpenGL.framework"; sourceTree = "<absolute>"; };
|
||||
04C670D73B865A7F51992465 /* torturethread */ = {isa = PBXFileReference; explicitFileType = "compiled.mach-o.executable"; includeInIndex = 0; name = "torturethread"; path = "torturethread"; sourceTree = BUILT_PRODUCTS_DIR; };
|
||||
49211B7E24B9724343D8399B /* SDL2main.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2main.xcodeproj"; path = "../../SDL2main/SDL2main.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
2A972B8803A774F925DC2034 /* SDL2.xcodeproj */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.pb-project"; name = "SDL2.xcodeproj"; path = "../../SDL2/SDL2.xcodeproj"; sourceTree = SOURCE_ROOT; };
|
||||
/* End PBXFileReference section */
|
||||
|
||||
/* Begin PBXFrameworksBuildPhase section */
|
||||
383067F53F225E3F7E2C39A1 /* Frameworks */ = {
|
||||
isa = PBXFrameworksBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
0CB40A2C6B384AFE1F85723A /* AudioToolbox.framework in Frameworks */,
|
||||
41B152CD3C1934387F884871 /* AudioUnit.framework in Frameworks */,
|
||||
4AAE7E7E0A5653E768C911A7 /* Cocoa.framework in Frameworks */,
|
||||
59D67481676E7E4D1C56615B /* CoreAudio.framework in Frameworks */,
|
||||
3FE91A7D412638F432DE3092 /* IOKit.framework in Frameworks */,
|
||||
3B603B2925A51C443AE06C31 /* Carbon.framework in Frameworks */,
|
||||
354E39343B790A977606178E /* ForceFeedback.framework in Frameworks */,
|
||||
093E72445180495D2C004D65 /* CoreFoundation.framework in Frameworks */,
|
||||
38FF0DD1184645800F951B47 /* OpenGL.framework in Frameworks */,
|
||||
3ED8149145C136443C2A20C4 /* libSDL2main.a in Frameworks */,
|
||||
6F343F4955834AD4658C4DF4 /* libSDL2.a in Frameworks */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXFrameworksBuildPhase section */
|
||||
|
||||
/* Begin PBXGroup section */
|
||||
52C33FFB7B7F54AF3360134B /* torturethread */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
4104708A743A2F6E04606A87 /* test */,
|
||||
16FB4D0B36D6203039B60176 /* Frameworks */,
|
||||
11876D82024B38F500662D0D /* Products */,
|
||||
35307E4C3A3868B6445F5BDD /* Projects */,
|
||||
);
|
||||
name = "torturethread";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
4104708A743A2F6E04606A87 /* test */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
5FA75DEA52290DD6605A4165 /* torturethread.c */,
|
||||
);
|
||||
name = "test";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
16FB4D0B36D6203039B60176 /* Frameworks */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
79E670F651C62A887F6A3215 /* AudioToolbox.framework */,
|
||||
483C7AD419A54986085D3C48 /* AudioUnit.framework */,
|
||||
0ACC6B776AC5494213B245D5 /* Cocoa.framework */,
|
||||
00142FCB5AC003C512F6094D /* CoreAudio.framework */,
|
||||
23342F6529E525F2711B4A7C /* IOKit.framework */,
|
||||
4DE1115E4433107A54200280 /* Carbon.framework */,
|
||||
36EE5D451D1849841BF45B78 /* ForceFeedback.framework */,
|
||||
7E321F3300CF2F895F7F1C47 /* CoreFoundation.framework */,
|
||||
40701A1D6AD506C4546D7276 /* OpenGL.framework */,
|
||||
);
|
||||
name = "Frameworks";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
11876D82024B38F500662D0D /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
04C670D73B865A7F51992465 /* torturethread */,
|
||||
);
|
||||
name = "Products";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
35307E4C3A3868B6445F5BDD /* Projects */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
49211B7E24B9724343D8399B /* SDL2main.xcodeproj */,
|
||||
2A972B8803A774F925DC2034 /* SDL2.xcodeproj */,
|
||||
);
|
||||
name = "Projects";
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
19B4019451080CEE6B6752BA /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
774C249D69042D1A42DF6270 /* libSDL2main.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
51FB541E39AA5F7A55401C07 /* Products */ = {
|
||||
isa = PBXGroup;
|
||||
children = (
|
||||
6ACA22173E33236140FF5CCC /* libSDL2.a */,
|
||||
);
|
||||
name = Products;
|
||||
sourceTree = "<group>";
|
||||
};
|
||||
/* End PBXGroup section */
|
||||
|
||||
/* Begin PBXNativeTarget section */
|
||||
75467BAF23EA7DA442B93066 /* torturethread */ = {
|
||||
isa = PBXNativeTarget;
|
||||
buildConfigurationList = 62AA34F754F6660758827B79 /* Build configuration list for PBXNativeTarget "torturethread" */;
|
||||
buildPhases = (
|
||||
59B43C746DAF04801E8356AF /* Resources */,
|
||||
7C03337571B2019A391F6075 /* Sources */,
|
||||
383067F53F225E3F7E2C39A1 /* Frameworks */,
|
||||
);
|
||||
buildRules = (
|
||||
);
|
||||
dependencies = (
|
||||
1A5E31995684244817750D80 /* PBXTargetDependency */,
|
||||
69881AE217550B2E0BA6694F /* PBXTargetDependency */,
|
||||
);
|
||||
name = "torturethread";
|
||||
productInstallPath = "$(HOME)/bin";
|
||||
productName = "torturethread";
|
||||
productReference = 04C670D73B865A7F51992465 /* torturethread */;
|
||||
productType = "com.apple.product-type.tool";
|
||||
};
|
||||
/* End PBXNativeTarget section */
|
||||
|
||||
/* Begin PBXProject section */
|
||||
08FB7793FE84155DC02AAC07 /* Project object */ = {
|
||||
isa = PBXProject;
|
||||
buildConfigurationList = 1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "torturethread" */;
|
||||
compatibilityVersion = "Xcode 3.2";
|
||||
hasScannedForEncodings = 1;
|
||||
mainGroup = 52C33FFB7B7F54AF3360134B /* torturethread */;
|
||||
projectDirPath = "";
|
||||
projectReferences = (
|
||||
{
|
||||
ProductGroup = 19B4019451080CEE6B6752BA /* Products */;
|
||||
ProjectRef = 49211B7E24B9724343D8399B /* SDL2main.xcodeproj */;
|
||||
},
|
||||
{
|
||||
ProductGroup = 51FB541E39AA5F7A55401C07 /* Products */;
|
||||
ProjectRef = 2A972B8803A774F925DC2034 /* SDL2.xcodeproj */;
|
||||
},
|
||||
);
|
||||
projectRoot = "";
|
||||
targets = (
|
||||
75467BAF23EA7DA442B93066 /* torturethread */,
|
||||
);
|
||||
};
|
||||
/* End PBXProject section */
|
||||
|
||||
/* Begin PBXReferenceProxy section */
|
||||
774C249D69042D1A42DF6270 /* libSDL2main.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2main.a";
|
||||
remoteRef = 5B10199654223EDE16005ABF /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
6ACA22173E33236140FF5CCC /* libSDL2.a */ = {
|
||||
isa = PBXReferenceProxy;
|
||||
fileType = archive.ar;
|
||||
path = "Build/Debug/libSDL2.a";
|
||||
remoteRef = 281A4C152FA91B280FFD4166 /* PBXContainerItemProxy */;
|
||||
sourceTree = BUILT_PRODUCTS_DIR;
|
||||
};
|
||||
/* End PBXReferenceProxy section */
|
||||
|
||||
/* Begin PBXResourcesBuildPhase section */
|
||||
59B43C746DAF04801E8356AF /* Resources */ = {
|
||||
isa = PBXResourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXResourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXSourcesBuildPhase section */
|
||||
7C03337571B2019A391F6075 /* Sources */ = {
|
||||
isa = PBXSourcesBuildPhase;
|
||||
buildActionMask = 2147483647;
|
||||
files = (
|
||||
0B1A6B465F267277727F1F6A /* torturethread.c in Sources */,
|
||||
);
|
||||
runOnlyForDeploymentPostprocessing = 0;
|
||||
};
|
||||
/* End PBXSourcesBuildPhase section */
|
||||
|
||||
/* Begin PBXVariantGroup section */
|
||||
/* End PBXVariantGroup section */
|
||||
|
||||
/* Begin PBXTargetDependency section */
|
||||
1A5E31995684244817750D80 /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2main.a";
|
||||
targetProxy = 492C0DDD39AC709960CA1D3B /* PBXContainerItemProxy */;
|
||||
};
|
||||
69881AE217550B2E0BA6694F /* PBXTargetDependency */ = {
|
||||
isa = PBXTargetDependency;
|
||||
name = "libSDL2.a";
|
||||
targetProxy = 24F701915BCC641934B646BE /* PBXContainerItemProxy */;
|
||||
};
|
||||
/* End PBXTargetDependency section */
|
||||
|
||||
/* Begin XCBuildConfiguration section */
|
||||
7AA24F003AD034440EBA0FE2 /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "torturethread";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
273B1EDF6B8448E06AFE7AD5 /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
CONFIGURATION_BUILD_DIR = Build/Debug;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "torturethread";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
34AD579C519045767AA1795E /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "torturethread";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
6FE9381E57F51F65473054AB /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ALWAYS_SEARCH_USER_PATHS = NO;
|
||||
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
||||
CONFIGURATION_BUILD_DIR = Build/Release;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
GCC_MODEL_TUNING = G5;
|
||||
INSTALL_PATH = /usr/local/bin;
|
||||
PRODUCT_NAME = "torturethread";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
70CE0CB34B4406E20D7A628B /* Debug Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Universal";
|
||||
};
|
||||
6BB62409012546322B45004E /* Debug Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_FIX_AND_CONTINUE = YES;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 0;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"_DEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Debug";
|
||||
ONLY_ACTIVE_ARCH = YES;
|
||||
SYMROOT = "Build/Debug";
|
||||
};
|
||||
name = "Debug Native";
|
||||
};
|
||||
2C526089646A0EBC67F450CF /* Release Universal */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_64_BIT)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Universal/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Universal";
|
||||
};
|
||||
45FE47EA0082624D6480128B /* Release Native */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(NATIVE_ARCH_ACTUAL)";
|
||||
CONFIGURATION_BUILD_DIR = "$(SYMROOT)";
|
||||
CONFIGURATION_TEMP_DIR = "$(OBJROOT)";
|
||||
GCC_C_LANGUAGE_STANDARD = gnu99;
|
||||
GCC_ENABLE_CPP_EXCEPTIONS = NO;
|
||||
GCC_ENABLE_OBJC_EXCEPTIONS = NO;
|
||||
GCC_OPTIMIZATION_LEVEL = 3;
|
||||
GCC_PREPROCESSOR_DEFINITIONS = (
|
||||
"USING_PREMAKE_CONFIG_H",
|
||||
"NDEBUG",
|
||||
);
|
||||
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
||||
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
||||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
HEADER_SEARCH_PATHS = (
|
||||
"../..",
|
||||
"../../../../../include",
|
||||
);
|
||||
OBJROOT = "obj/Release";
|
||||
ONLY_ACTIVE_ARCH = NO;
|
||||
SYMROOT = "Build/Release";
|
||||
};
|
||||
name = "Release Native";
|
||||
};
|
||||
/* End XCBuildConfiguration section */
|
||||
|
||||
/* Begin XCConfigurationList section */
|
||||
62AA34F754F6660758827B79 /* Build configuration list for PBXNativeTarget "torturethread" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
7AA24F003AD034440EBA0FE2 /* Debug Universal */,
|
||||
273B1EDF6B8448E06AFE7AD5 /* Debug Native */,
|
||||
34AD579C519045767AA1795E /* Release Universal */,
|
||||
6FE9381E57F51F65473054AB /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
1DEB928908733DD80010E9CD /* Build configuration list for PBXProject "torturethread" */ = {
|
||||
isa = XCConfigurationList;
|
||||
buildConfigurations = (
|
||||
70CE0CB34B4406E20D7A628B /* Debug Universal */,
|
||||
6BB62409012546322B45004E /* Debug Native */,
|
||||
2C526089646A0EBC67F450CF /* Release Universal */,
|
||||
45FE47EA0082624D6480128B /* Release Native */,
|
||||
);
|
||||
defaultConfigurationIsVisible = 0;
|
||||
defaultConfigurationName = "Debug Universal";
|
||||
};
|
||||
/* End XCConfigurationList section */
|
||||
|
||||
};
|
||||
rootObject = 08FB7793FE84155DC02AAC07 /* Project object */;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue