-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathCMakePresets.json
38 lines (38 loc) · 1.23 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
{
"version": 2,
"configurePresets": [
{
"name": "dev",
"description": "Simple development preset",
"generator": "Ninja",
"binaryDir": "${sourceDir}/build-dev",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON",
"KDReports_TESTS": "ON",
"KDReports_QT6": "ON"
}
},
{
"name": "dev-asan",
"description": "Simple development preset with sanitizers",
"generator": "Ninja",
"binaryDir": "${sourceDir}/build-dev-asan",
"cacheVariables": {
"ECM_ENABLE_SANITIZERS": "'address;undefined'"
},
"inherits": "dev"
},
{
"name": "dev-profiling",
"description": "Simple development preset with optimizations and debug symbols",
"generator": "Ninja",
"binaryDir": "${sourceDir}/build-dev-profiling",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "RelWithDebInfo",
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON",
"KDReports_QT6": "ON"
}
}
]
}