1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-09-18 08:22:33 +02:00
ScreenPlay/CMake/Platform/Mac/CMakePresets.json
Elias Steurer 734a24b78f Update Qt version to 6.7.2
Add debug info
2024-07-29 12:41:27 +02:00

63 lines
1.7 KiB
JSON

{
"version": 4,
"cmakeMinimumRequired": {
"major": 3,
"minor": 27,
"patch": 0
},
"include": [
"../Common/CMakePresets.json"
],
"configurePresets": [
{
"name": "mac-base",
"hidden": true,
"inherits": [
"default",
"ninja",
"host-mac"
],
"cacheVariables": {
"CMAKE_PREFIX_PATH": "${sourceDir}/../aqt/6.7.2/macos",
"VCPKG_OSX_ARCHITECTURES": "arm64;x86_64",
"VCPKG_TARGET_TRIPLET": "64-osx-universal"
}
},
{
"name": "mac-clang-base",
"hidden": true,
"inherits": "mac-base",
"cacheVariables": {
"CMAKE_CXX_COMPILER": "clang++",
"CMAKE_C_COMPILER": "clang"
}
},
{
"name": "mac-clang-debug",
"binaryDir": "${sourceDir}/../build_ScreenPlay_Clang_Debug",
"inherits": [
"config-develop",
"mac-clang-base",
"debug"
]
},
{
"name": "mac-clang-relwithdebinfo",
"binaryDir": "${sourceDir}/../build_ScreenPlay_Clang_RelWithDebInfo",
"inherits": [
"config-develop",
"mac-clang-base",
"relwithdebinfo"
]
},
{
"name": "mac-clang-release",
"binaryDir": "${sourceDir}/../build_ScreenPlay_Clang_Release",
"inherits": [
"config-develop",
"mac-clang-base",
"release"
]
}
]
}