Skip to content

Commit

Permalink
Add New or Refactored configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
davidmorford committed Mar 28, 2011
1 parent 54c7a87 commit 0ee2e76
Show file tree
Hide file tree
Showing 8 changed files with 69 additions and 0 deletions.
9 changes: 9 additions & 0 deletions Configurations/Debug.xcconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@

//
// Debug.xcconfig
//

GCC_OPTIMIZATION_LEVEL = 0
GCC_GENERATE_DEBUGGING_SYMBOLS = YES
GCC_DYNAMIC_NO_PIC = NO
COPY_PHASE_STRIP = NO
6 changes: 6 additions & 0 deletions Configurations/DeploymentTarget.xcconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@

//
// DeploymentTarget.xcconfig
//

IPHONEOS_DEPLOYMENT_TARGET = 4.2
6 changes: 6 additions & 0 deletions Configurations/DeviceUniversal.xcconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@

//
// DeviceUniversal.xcconfig
//

TARGETED_DEVICE_FAMILY = 1,2
6 changes: 6 additions & 0 deletions Configurations/DeviceiPad.xcconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@

//
// DeviceiPad.xcconfig
//

TARGETED_DEVICE_FAMILY = 2
6 changes: 6 additions & 0 deletions Configurations/DeviceiPhone.xcconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@

//
// DeviceiPhone.xcconfig
//

TARGETED_DEVICE_FAMILY = 1
17 changes: 17 additions & 0 deletions Configurations/Paths.xcconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@

//
// Paths.xcconfig
//

#include "Scripts.xcconfig"

BUILD_SHARED_ROOT_PATH = $(SRCROOT)/../../../Build

BUILD_SHARED_APPS_PATH = $(BUILD_SHARED_ROOT_PATH)/Applications
BUILD_SHARED_BUNDLES_PATH = $(BUILD_SHARED_ROOT_PATH)/Bundles
BUILD_SHARED_DOCUMENTS_PATH = $(BUILD_SHARED_ROOT_PATH)/Documents
BUILD_SHARED_LIBRARIES_PATH = $(BUILD_SHARED_ROOT_PATH)/Libraries
BUILD_SHARED_TOOLS_PATH = $(BUILD_SHARED_ROOT_PATH)/Tools
BUILD_SHARED_TESTS_PATH = $(BUILD_SHARED_ROOT_PATH)/UnitTests

BUILD_PLATFORM_NAME_PATH = $(BUILD_SHARED_LIBRARIES_PATH)/$(CONFIGURATION)/$(SDK_NAME)
9 changes: 9 additions & 0 deletions Configurations/Profile.xcconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@

//
// Profile.xcconfig
//

GCC_OPTIMIZATION_LEVEL = 2
GCC_GENERATE_DEBUGGING_SYMBOLS = YES
GCC_DYNAMIC_NO_PIC = NO
COPY_PHASE_STRIP = NO
10 changes: 10 additions & 0 deletions Configurations/Release.xcconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@

//
// Release.xcconfig
//

GCC_OPTIMIZATION_LEVEL = s
GCC_GENERATE_DEBUGGING_SYMBOLS = YES
OTHER_CFLAGS = $(OTHER_CFLAGS) -DNS_BLOCK_ASSERTIONS=1
COPY_PHASE_STRIP = YES

0 comments on commit 0ee2e76

Please sign in to comment.