Sha256: e3e2ba88c67884f2f9dd51786e9501e36ea7b939a79e4698b20dec2cd062bf92
Contents?: true
Size: 1.4 KB
Versions: 17
Compression:
Stored size: 1.4 KB
Contents
// // Project-Release.xcconfig // // Generated by BuildSettingExtractor on 2023/12/27 // https://buildsettingextractor.com // #include "Shared.xcconfig" // Enable Foundation Assertions // // Controls whether assertion logic provided by `NSAssert` is included in the // preprocessed source code or is elided during preprocessing. Disabling assertions can // improve code performance. ENABLE_NS_ASSERTIONS = NO // Produce Debugging Information // // Debugging information is required for shader debugging and profiling. MTL_ENABLE_DEBUG_INFO = NO // Swift Compilation Mode // // This setting controls the way the Swift files in a module are rebuilt. // // * Incremental: Only rebuild the Swift source files in the module that are out of // date, running multiple compiler processes as needed. // * Whole Module: Always rebuild all Swift source files in the module, in a single // compiler process. SWIFT_COMPILATION_MODE = wholemodule // 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 = -O // Validate Built Product // // If enabled, perform validation checks on the product as part of the build process. VALIDATE_PRODUCT = YES CODE_SIGN_IDENTITY = Apple Distribution CODE_SIGN_IDENTITY[sdk=iphoneos*] = iPhone Distribution
Version data entries
17 entries across 17 versions & 1 rubygems