-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakePresets.json
More file actions
32 lines (32 loc) · 820 Bytes
/
Copy pathCMakePresets.json
File metadata and controls
32 lines (32 loc) · 820 Bytes
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
{
"version": 6,
"cmakeMinimumRequired": { "major": 4, "minor": 0 },
"configurePresets": [
{
"name": "windows",
"generator": "Visual Studio 17 2022",
"architecture": "x64",
"binaryDir": "${sourceDir}/_Build_wnd",
"cacheVariables": { "KIT_BUILD_SCRIPT": "ON" }
},
{
"name": "macos",
"binaryDir": "${sourceDir}/_Build_mac",
"cacheVariables": {
"KIT_BUILD_SCRIPT": "ON",
"CMAKE_BUILD_TYPE": "Release",
"CMAKE_OSX_SYSROOT": "macosx",
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON"
}
},
{
"name": "linux",
"binaryDir": "${sourceDir}/_Build_lnx",
"cacheVariables": {
"KIT_BUILD_SCRIPT": "ON",
"CMAKE_BUILD_TYPE": "Release",
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON"
}
}
]
}