35 lines
1018 B
Plaintext
35 lines
1018 B
Plaintext
//
|
|
// This file defines the base configuration for a Release build of any project.
|
|
// This should be set at the project level for the Release configuration.
|
|
//
|
|
|
|
#include "../Common.xcconfig"
|
|
|
|
// Whether to strip debugging symbols when copying resources (like included
|
|
// binaries)
|
|
COPY_PHASE_STRIP = YES
|
|
|
|
// The optimization level (0, 1, 2, 3, s) for the produced binary
|
|
GCC_OPTIMIZATION_LEVEL = s
|
|
|
|
// Preproccessor definitions to apply to each file compiled
|
|
GCC_PREPROCESSOR_DEFINITIONS = NDEBUG=1
|
|
|
|
// Whether to enable link-time optimizations (such as inlining across translation
|
|
// units)
|
|
LLVM_LTO = NO
|
|
|
|
// Whether to only build the active architecture
|
|
ONLY_ACTIVE_ARCH = NO
|
|
|
|
// Whether to strip debugging symbols when copying the built product to its
|
|
// final installation location
|
|
STRIP_INSTALLED_PRODUCT = YES
|
|
|
|
// The optimization level (-Onone, -O, -Owholemodule) for the produced Swift binary
|
|
SWIFT_OPTIMIZATION_LEVEL = -Owholemodule
|
|
|
|
// Whether to perform App Store validation checks
|
|
VALIDATE_PRODUCT = YES
|
|
|