-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCMakePresets.json
More file actions
44 lines (44 loc) · 979 Bytes
/
CMakePresets.json
File metadata and controls
44 lines (44 loc) · 979 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
37
38
39
40
41
42
43
44
{
"version": 2,
"configurePresets": [
{
"name": "base",
"displayName": "base",
"hidden": true,
"generator": "Ninja",
"cacheVariables": {
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON"
}
},
{
"name": "dev5",
"inherits": "base",
"displayName": "dev5",
"binaryDir": "${sourceDir}/build-dev",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
}
},
{
"name": "dev",
"inherits": "base",
"displayName": "dev6",
"binaryDir": "${sourceDir}/build-dev6",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"OPTION_QT6": "ON",
"CMAKE_PREFIX_PATH": "$env{QT6_DIR}"
}
},
{
"name": "release",
"inherits": "base",
"displayName": "release6",
"binaryDir": "${sourceDir}/build-release6",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "RelWithDebInfo",
"OPTION_QT6": "ON"
}
}
]
}