-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakePresets.json
33 lines (33 loc) · 1017 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
{
"version": 6,
"cmakeMinimumRequired": {
"major": 3,
"minor": 30,
"patch": 0
},
"configurePresets": [
{
"name": "release",
"displayName": "Release Configuration",
"description": "Configures the project for release; you should most probably want to run this preset.",
"generator": "Unix Makefiles",
"architecture": "x86_64",
"binaryDir": "build-release",
"installDir": "/home/brian/.local",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release"
}
},
{
"name": "debug",
"displayName": "Debug Confguration",
"description": "Configures the project for debug.",
"generator": "Unix Makefiles",
"binaryDir": "build-debug",
"installDir": "/home/brian/.local",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
}
}
]
}