Make sure the simulator build also contains x86-64 slice

This commit is contained in:
Andreas Linde 2013-09-14 00:32:01 +02:00
parent f129857782
commit 7dfa7f1520
2 changed files with 6 additions and 0 deletions

View File

@ -953,6 +953,7 @@
1E5954F015B6F24A00A03429 /* Debug */ = {
isa = XCBuildConfiguration;
buildSettings = {
"ARCHS[sdk=iphonesimulator*]" = "$(BIT_SIM_ARCHS)";
DSTROOT = /tmp/HockeySDK.dst;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
@ -962,12 +963,14 @@
PRODUCT_NAME = HockeySDK;
PUBLIC_HEADERS_FOLDER_PATH = "include/$(PRODUCT_NAME)";
SKIP_INSTALL = YES;
"VALID_ARCHS[sdk=iphonesimulator*]" = "$(BIT_SIM_ARCHS)";
};
name = Debug;
};
1E5954F115B6F24A00A03429 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
"ARCHS[sdk=iphonesimulator*]" = "$(BIT_SIM_ARCHS)";
DSTROOT = /tmp/HockeySDK.dst;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
@ -977,6 +980,7 @@
PRODUCT_NAME = HockeySDK;
PUBLIC_HEADERS_FOLDER_PATH = "include/$(PRODUCT_NAME)";
SKIP_INSTALL = YES;
"VALID_ARCHS[sdk=iphonesimulator*]" = "$(BIT_SIM_ARCHS)";
};
name = Release;
};

View File

@ -4,4 +4,6 @@ BUILD_NUMBER = 17
VERSION_STRING = 3.5.0b1
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) BITHOCKEY_VERSION="@\""$(VERSION_STRING)"\""
BIT_ARM_ARCHS = armv7 armv7s arm64
BIT_SIM_ARCHS = x86_64 i386
ARCHS = $(BIT_ARM_ARCHS)
VALID_ARCHS = $(BIT_ARM_ARCHS)