OLD | NEW |
(Empty) | |
| 1 { |
| 2 'targets': [ |
| 3 { |
| 4 'target_name': 'swift_wmo', |
| 5 'type': 'executable', |
| 6 'mac_bundle': '1', |
| 7 'xcode_settings': { |
| 8 'CLANG_ENABLE_MODULES': 'YES', |
| 9 'CLANG_ENABLE_OBJC_ARC': 'YES', |
| 10 'CLANG_MODULE_CACHE_PATH': '<(PRODUCT_DIR)/ModuleCache', |
| 11 'CODE_SIGNING_REQUIRED': 'NO', |
| 12 'INFOPLIST_FILE': 'Info.plist', |
| 13 'IPHONEOS_DEPLOYMENT_TARGET': '7.0', |
| 14 'LD_RUNPATH_SEARCH_PATHS': ['@executable_path/Frameworks'], |
| 15 'SWIFT_OPTIMIZATION_LEVEL': '-Owholemodule', |
| 16 'TARGETED_DEVICE_FAMILY': '1,2', |
| 17 'conditions': [ |
| 18 ['"<(GENERATOR)"=="xcode"', { |
| 19 'SDKROOT': 'iphoneos', |
| 20 }, { |
| 21 'SDKROOT': 'iphonesimulator', |
| 22 }], |
| 23 ], |
| 24 }, |
| 25 'sources': [ |
| 26 'AppDelegate.h', |
| 27 'AppDelegate.m', |
| 28 'main.m', |
| 29 'MySecondSwiftClass.swift', |
| 30 'MySwiftClass.swift', |
| 31 ], |
| 32 'conditions': [ |
| 33 ['"<(GENERATOR)"=="ninja"', { |
| 34 'include_dirs': [ |
| 35 '<(INTERMEDIATE_DIR)', |
| 36 ], |
| 37 }], |
| 38 ], |
| 39 }, |
| 40 ], |
| 41 } |
OLD | NEW |