-
Notifications
You must be signed in to change notification settings - Fork 54
/
CMakeUserPresets.json.example
39 lines (39 loc) · 1.17 KB
/
CMakeUserPresets.json.example
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
{
"version": 2,
"configurePresets": [
{
"name": "gcc-vanilla-debug",
"inherits": "gcc-vanilla",
"displayName": "GCC Vanilla debug build",
"binaryDir": "${sourceDir}/build_gcc",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
}
},
{
"name": "clang-vanilla-debug",
"inherits": "clang-vanilla",
"displayName": "Clang Vanilla debug build",
"binaryDir": "${sourceDir}/build_clang",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
}
},
{
"name": "mingw-i686-vanilla-debug",
"inherits": "mingw-i686-vanilla",
"displayName": "MinGW-w64 32bit Vanilla debug build",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
}
},
{
"name": "mingw-x86_64-vanilla-debug",
"inherits": "mingw-x86_64-vanilla",
"displayName": "MinGW-w64 64bit Vanilla debug build",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
}
}
]
}