Xcode project: set OS X deployment target
… to 10.8 for release builds. This avoids a problem with the change of default standard libraries from OS X 10.8 to 10.9 and permits using the default SDK for the given OS X version.
This commit is contained in:
parent
c99f291c72
commit
2df4ba08b4
1 changed files with 5 additions and 5 deletions
|
@ -4868,8 +4868,7 @@
|
|||
B5BB6B4D0F890FBC00444FBF /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)";
|
||||
ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386";
|
||||
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
ENABLE_OPENMP_SUPPORT = NO;
|
||||
GCC_DYNAMIC_NO_PIC = NO;
|
||||
|
@ -4887,6 +4886,7 @@
|
|||
"$(inherited)",
|
||||
"\"$(SRCROOT)/lib\"",
|
||||
);
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.8;
|
||||
OTHER_CPLUSPLUSFLAGS = (
|
||||
"$(OTHER_CFLAGS)",
|
||||
"-isystem",
|
||||
|
@ -4921,8 +4921,7 @@
|
|||
C01FCF4B08A954540054247B /* Debug */ = {
|
||||
isa = XCBuildConfiguration;
|
||||
buildSettings = {
|
||||
ARCHS = "$(ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1)";
|
||||
ARCHS_STANDARD_32_BIT_PRE_XCODE_3_1 = "ppc i386";
|
||||
ARCHS = "$(ARCHS_STANDARD_32_BIT)";
|
||||
COPY_PHASE_STRIP = NO;
|
||||
ENABLE_OPENMP_SUPPORT = NO;
|
||||
FRAMEWORK_SEARCH_PATHS = (
|
||||
|
@ -4949,13 +4948,14 @@
|
|||
"$(inherited)",
|
||||
"\"$(SRCROOT)/lib\"",
|
||||
);
|
||||
MACOSX_DEPLOYMENT_TARGET = 10.8;
|
||||
OTHER_CPLUSPLUSFLAGS = (
|
||||
"$(OTHER_CFLAGS)",
|
||||
"-isystem",
|
||||
./Headers,
|
||||
);
|
||||
PRODUCT_NAME = Wesnoth;
|
||||
SDKROOT = macosx;
|
||||
SDKROOT = "";
|
||||
WRAPPER_EXTENSION = app;
|
||||
};
|
||||
name = Debug;
|
||||
|
|
Loading…
Add table
Reference in a new issue