Files
CryptoSwift/config/Tests-Debug.xcconfig
T
Marcin Krzyzanowski 939a3d7ce6 Lipsticks
2019-10-04 13:23:40 +02:00

38 lines
1.1 KiB
Plaintext

//
// Tests-Debug.xcconfig
//
// Generated by BuildSettingExtractor on 02/04/2018
// https://github.com/dempseyatgithub/BuildSettingExtractor
//
#include "Tests-Shared.xcconfig"
// Link-Time Optimization
//
// Enabling this setting allows optimization across file boundaries during linking.
//
// * *No:* Disabled. Do not use link-time optimization.
// * *Monolithic Link-Time Optimization:* This mode performs monolithic link-time
// optimization of binaries, combining all executable code into a single unit and running
// aggressive compiler optimizations.
// * *Incremental Link-Time Optimization:* This mode performs partitioned link-time
// optimization of binaries, inlining between compilation units and running aggressive
// compiler optimizations on each unit in parallel. This enables fast incremental builds
// and uses less memory than Monolithic LTO.
LLVM_LTO = NO
METAL_ENABLE_DEBUG_INFO = YES
// Swift Optimization Level
//
// * *None:* Compile without any optimization. [-Onone]
// * *Optimize for Speed:* [-O]
// * *Optimize for Size:* [-Osize]
// * *Whole Module Optimization:* [-O -whole-module-optimization]
SWIFT_OPTIMIZATION_LEVEL = -Onone