12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- //
- // Project-Debug.xcconfig
- //
- // Generated by BuildSettingExtractor on 02/04/2018
- // https://github.com/dempseyatgithub/BuildSettingExtractor
- //
- #include "Project-Shared.xcconfig"
- // Strip Debug Symbols During Copy
- //
- // Specifies whether binary files that are copied during the build, such as in a Copy
- // Bundle Resources or Copy Files build phase, should be stripped of debugging symbols.
- // It does not cause the linked product of a target to be stripped—use
- // `STRIP_INSTALLED_PRODUCT` for that.
- COPY_PHASE_STRIP = NO
- // Enable Testability
- //
- // When this setting is activated, the product will be built with options appropriate for
- // running automated tests, such as making private interfaces accessible to the tests.
- // This may result in tests running slower than they would without testability enabled.
- ENABLE_TESTABILITY = YES
- // Generate Position-Dependent Code
- //
- // Faster function calls for applications. Not appropriate for shared libraries, which
- // need to be position-independent.
- GCC_DYNAMIC_NO_PIC = NO
- // Preprocessor Macros
- //
- // Space-separated list of preprocessor macros of the form `foo` or `foo=bar`.
- GCC_PREPROCESSOR_DEFINITIONS = $(inherited) DEBUG=1
- // Active Compilation Conditions
- //
- // A list of compilation conditions to enable for conditional compilation expressions.
- SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG
- METAL_ENABLE_DEBUG_INFO = YES
- // Build Active Architecture Only
- //
- // If enabled, only the active architecture is built.
- ONLY_ACTIVE_ARCH = YES
|