-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCMakePresets.json
More file actions
35 lines (35 loc) · 1.05 KB
/
CMakePresets.json
File metadata and controls
35 lines (35 loc) · 1.05 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"version": 3,
"configurePresets": [
{
"name": "macos13-cross",
"displayName": "macOS 13",
"description": "Cross-compile macOS 13 apps from Windows using Clang and SDK",
"generator": "Ninja",
"binaryDir": "${sourceDir}/build/macos13-cross",
"toolchainFile": "${sourceDir}/macosx-toolchain.cmake",
"cacheVariables": {
"CMAKE_OSX_DEPLOYMENT_TARGET": "13.0"
},
"environment": {
"CMAKE_VERBOSE_MAKEFILE": "ON",
"MACOSX_SDK": "${sourceDir}/SDK/MacOSX13.sdk"
}
},
{
"name": "macos14-cross",
"displayName": "macOS 14.5",
"description": "Cross-compile macOS 14.5 apps from Windows using Clang and SDK",
"generator": "Ninja",
"binaryDir": "${sourceDir}/build/macos14-cross",
"toolchainFile": "${sourceDir}/macosx-toolchain.cmake",
"cacheVariables": {
"CMAKE_OSX_DEPLOYMENT_TARGET": "14.5"
},
"environment": {
"CMAKE_VERBOSE_MAKEFILE": "ON",
"MACOSX_SDK": "${sourceDir}/SDK/MacOSX14.5.sdk"
}
}
]
}