Last active
October 17, 2022 10:23
-
-
Save kambala-decapitator/59438030c34b53aed7d3895aaa48b718 to your computer and use it in GitHub Desktop.
local CMake presets for VCMI iOS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"version": 3, | |
"cmakeMinimumRequired": { | |
"major": 3, | |
"minor": 21, | |
"patch": 0 | |
}, | |
"configurePresets": [ | |
{ | |
"name": "ios-common", | |
"displayName": "iOS base", | |
"hidden": true, | |
"cacheVariables": { | |
"APP_DISPLAY_NAME": "VCMI-debug", | |
"BUNDLE_IDENTIFIER_PREFIX": "com.kambala", | |
"CMAKE_XCODE_ATTRIBUTE_DEVELOPMENT_TEAM": "4XHN44TEVG" | |
}, | |
"warnings": { | |
"dev": false | |
} | |
}, | |
{ | |
"name": "ios-conan", | |
"displayName": "iOS Conan", | |
"inherits": ["ios-device-conan", "ios-common"], | |
"cacheVariables": { | |
"APP_DISPLAY_NAME": "VCMI-conan", | |
"BUNDLE_IDENTIFIER_PREFIX": "com.kambala1" | |
} | |
}, | |
{ | |
"name": "ios", | |
"displayName": "iOS legacy", | |
"inherits": ["ios-device", "ios-common"], | |
"cacheVariables": { | |
"CMAKE_PREFIX_PATH": "~/dev/vcmi/vcmi-ios-depends/build/iphoneos" | |
} | |
}, | |
{ | |
"name": "ios-sim", | |
"displayName": "iOS simulator", | |
"inherits": ["ios-simulator", "ios-common"], | |
"cacheVariables": { | |
"CMAKE_PREFIX_PATH": "~/dev/vcmi/vcmi-ios-depends/build/iphonesimulator" | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment