From 404dee79683c743c4071c095ff51df6d500cf76a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Berg?= Date: Fri, 26 Mar 2010 01:19:37 +0100 Subject: [PATCH] Move some settings from Install.xcconfig that are intended for Release as well over. Add intended usage note to Install.xcconfig. --- Debug.xcconfig | 1 - Install.xcconfig | 8 ++++---- Release.xcconfig | 6 +++++- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/Debug.xcconfig b/Debug.xcconfig index 8bb83ea..124d2d0 100644 --- a/Debug.xcconfig +++ b/Debug.xcconfig @@ -30,4 +30,3 @@ OTHER_CFLAGS = -fdiagnostics-show-option GCC_WARN_UNUSED_VARIABLE = YES GCC_WARN_CHECK_SWITCH_STATEMENTS = YES GCC_WARN_ABOUT_RETURN_TYPE = YES - diff --git a/Install.xcconfig b/Install.xcconfig index fe01bd4..65628dc 100644 --- a/Install.xcconfig +++ b/Install.xcconfig @@ -19,10 +19,10 @@ // Global settings across build configurations for Install +// The Install build config should just serve as a mere extension to the Release +// config, e.g. please do not define settings here that could as well be defined +// in Release.xcconfig. + #include "Release.xcconfig" CUSTOM_INSTALL_DIR = $(DEVELOPER_DIR)/Applications/Utilities/Third-Party // used with the Install.sh script - -DEPLOYMENT_POSTPROCESSING = YES - -STRIP_INSTALLED_PRODUCT = YES diff --git a/Release.xcconfig b/Release.xcconfig index 596e684..2defa96 100644 --- a/Release.xcconfig +++ b/Release.xcconfig @@ -19,4 +19,8 @@ #include "Common.xcconfig" -DEBUG_INFORMATION_FORMAT = dwarf-with-dsym \ No newline at end of file +DEBUG_INFORMATION_FORMAT = dwarf-with-dsym + +DEPLOYMENT_POSTPROCESSING = YES + +STRIP_INSTALLED_PRODUCT = YES