-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathCMakePresets.json
More file actions
71 lines (71 loc) · 1.52 KB
/
CMakePresets.json
File metadata and controls
71 lines (71 loc) · 1.52 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"version": 2,
"configurePresets": [
{
"name": "base",
"hidden": true,
"generator": "Ninja",
"binaryDir": "${sourceDir}/build-${presetName}",
"cacheVariables": {
"CMAKE_EXPORT_COMPILE_COMMANDS": "ON",
"USE_QT6": "OFF"
}
},
{
"name": "dev",
"inherits": "base",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"BUILD_TESTING": "ON"
}
},
{
"name": "dev-asan",
"inherits": "dev",
"binaryDir": "${sourceDir}/build-${presetName}",
"cacheVariables": {
"ENABLE_SANITIZERS": "ON"
}
},
{
"name": "rel",
"inherits": "base",
"binaryDir": "${sourceDir}/build-${presetName}",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "RelWithDebInfo",
"BUILD_TESTING": "OFF"
}
},
{
"name": "dev6",
"inherits": "dev",
"binaryDir": "${sourceDir}/build-${presetName}",
"cacheVariables": {
"USE_QT6": "ON"
}
},
{
"name": "dev-no-webengine6",
"inherits": "dev6",
"cacheVariables": {
"LINK_TO_WEBENGINE_WIDGETS": "OFF"
}
},
{
"name": "rel6",
"inherits": "rel",
"binaryDir": "${sourceDir}/build-${presetName}",
"cacheVariables": {
"USE_QT6": "ON"
}
},
{
"name": "dev-asan6",
"inherits": "dev6",
"binaryDir": "${sourceDir}/build-${presetName}",
"cacheVariables": {
"ENABLE_SANITIZERS": "ON"
}
}
]
}