Tests-Debug.xcconfig 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // Tests-Debug.xcconfig
  3. //
  4. // Generated by BuildSettingExtractor on 02/04/2018
  5. // https://github.com/dempseyatgithub/BuildSettingExtractor
  6. //
  7. #include "Tests-Shared.xcconfig"
  8. // Link-Time Optimization
  9. //
  10. // Enabling this setting allows optimization across file boundaries during linking.
  11. //
  12. // * *No:* Disabled. Do not use link-time optimization.
  13. // * *Monolithic Link-Time Optimization:* This mode performs monolithic link-time
  14. // optimization of binaries, combining all executable code into a single unit and running
  15. // aggressive compiler optimizations.
  16. // * *Incremental Link-Time Optimization:* This mode performs partitioned link-time
  17. // optimization of binaries, inlining between compilation units and running aggressive
  18. // compiler optimizations on each unit in parallel. This enables fast incremental builds
  19. // and uses less memory than Monolithic LTO.
  20. LLVM_LTO = NO
  21. METAL_ENABLE_DEBUG_INFO = YES
  22. // Swift Optimization Level
  23. //
  24. // * *None:* Compile without any optimization. [-Onone]
  25. // * *Optimize for Speed:* [-O]
  26. // * *Optimize for Size:* [-Osize]
  27. // * *Whole Module Optimization:* [-O -whole-module-optimization]
  28. SWIFT_OPTIMIZATION_LEVEL = -Onone