forked from superjax/matrix_comparison
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakePresets.json
51 lines (50 loc) · 1.06 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
41
42
43
44
45
46
47
48
49
50
51
{
"version": 2,
"configurePresets": [
{
"name": "base",
"displayName": "Ninja Base",
"description": "Build using Ninja generator",
"generator": "Ninja",
"binaryDir": "${sourceDir}/cmake-build-${presetName}"
},
{
"name": "debug",
"inherits": "base",
"displayName": "Ninja Debug",
"description": "Debug Build using Ninja generator",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
},
"vendor": {
"jetbrains.com/clion": {
"toolchain": "LLVM"
}
}
},
{
"name": "release",
"inherits": "base",
"displayName": "Ninja Release",
"description": "Release Build using Ninja generator",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release"
},
"vendor": {
"jetbrains.com/clion": {
"toolchain": "LLVM"
}
}
}
],
"buildPresets": [
{
"name": "release",
"configurePreset": "release"
},
{
"name": "debug",
"configurePreset": "debug"
}
]
}