-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakePresets.json
43 lines (43 loc) · 1021 Bytes
/
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
41
42
43
{
"version": 4,
"cmakeMinimumRequired": {
"major": 3,
"minor": 15,
"patch": 0
},
"vendor": {
"conan": {}
},
"configurePresets": [
{
"name": "default",
"hidden": true,
"description": "Default preset for building bolt",
"generator": "Unix Makefiles",
"binaryDir": "${sourceDir}/build",
"cacheVariables": {
"CMAKE_POLICY_DEFAULT_CMP0091": "NEW"
}
},
{
"name": "defaultDebug",
"hidden": false,
"displayName": "Default Debug",
"inherits": "default",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
},
"toolchainFile": "${sourceDir}/build/Debug/generators/conan_toolchain.cmake"
},
{
"name": "defaultRelease",
"hidden": false,
"displayName": "Default Release",
"inherits": "default",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release"
},
"toolchainFile": "${sourceDir}/build/Release/generators/conan_toolchain.cmake"
}
]
}