-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakePresets.json
40 lines (40 loc) · 1.03 KB
/
CMakePresets.json
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
36
37
38
39
40
{
"version": 8,
"cmakeMinimumRequired": {
"major": 3,
"minor": 28,
"patch": 1
},
"configurePresets": [
{
"name": "all_base",
"binaryDir": "${sourceDir}/build/${presetName}",
"cacheVariables": {
"CMAKE_EXPORT_COMPILE_COMMANDS": "TRUE",
"CMAKE_INSTALL_PREFIX": "${sourceDir}/install/${presetName}"
},
"toolset": {
"value": "host=x64",
"strategy": "external"
},
"architecture": {
"value": "x64",
"strategy": "external"
}
},
{
"name": "Debug_x64_base",
"inherits": "all_base",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
}
},
{
"name": "Release_x64_base",
"inherits": "all_base",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release"
}
}
]
}