-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCMakePresets.json
More file actions
36 lines (36 loc) · 895 Bytes
/
Copy pathCMakePresets.json
File metadata and controls
36 lines (36 loc) · 895 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
33
34
35
36
{
"version": 3,
"configurePresets": [
{
"name": "default",
"hidden": true,
"binaryDir": "${sourceDir}/build",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"CMAKE_EXPORT_COMPILE_COMMANDS": true
}
},
{
"name": "gcc",
"inherits": "default",
"cacheVariables": {
"BUILD_SHARED_LIBS": true,
"CMAKE_CXX_COMPILER": "g++"
}
},
{
"name": "clang",
"inherits": "gcc",
"cacheVariables": {
"CMAKE_CXX_COMPILER": "clang++"
}
},
{
"name": "msvc",
"inherits": "default",
"cacheVariables": {
"CMAKE_CXX_COMPILER": "cl.exe"
}
}
]
}