Skip to content

Instantly share code, notes, and snippets.

@kambala-decapitator
Last active October 17, 2022 10:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kambala-decapitator/59438030c34b53aed7d3895aaa48b718 to your computer and use it in GitHub Desktop.
Save kambala-decapitator/59438030c34b53aed7d3895aaa48b718 to your computer and use it in GitHub Desktop.
local CMake presets for VCMI iOS
{
"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