Skip to content

Commit 404dee7

Browse files
committed
Move some settings from Install.xcconfig that are intended for Release as well over.
Add intended usage note to Install.xcconfig.
1 parent 344fb8c commit 404dee7

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

Debug.xcconfig

-1
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,3 @@ OTHER_CFLAGS = -fdiagnostics-show-option
3030
GCC_WARN_UNUSED_VARIABLE = YES
3131
GCC_WARN_CHECK_SWITCH_STATEMENTS = YES
3232
GCC_WARN_ABOUT_RETURN_TYPE = YES
33-

Install.xcconfig

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
1919

2020
// Global settings across build configurations for Install
2121

22+
// The Install build config should just serve as a mere extension to the Release
23+
// config, e.g. please do not define settings here that could as well be defined
24+
// in Release.xcconfig.
25+
2226
#include "Release.xcconfig"
2327

2428
CUSTOM_INSTALL_DIR = $(DEVELOPER_DIR)/Applications/Utilities/Third-Party // used with the Install.sh script
25-
26-
DEPLOYMENT_POSTPROCESSING = YES
27-
28-
STRIP_INSTALLED_PRODUCT = YES

Release.xcconfig

+5-1
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,8 @@
1919

2020
#include "Common.xcconfig"
2121

22-
DEBUG_INFORMATION_FORMAT = dwarf-with-dsym
22+
DEBUG_INFORMATION_FORMAT = dwarf-with-dsym
23+
24+
DEPLOYMENT_POSTPROCESSING = YES
25+
26+
STRIP_INSTALLED_PRODUCT = YES

0 commit comments

Comments
 (0)