-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathCMakeLinuxPresets.json
More file actions
48 lines (48 loc) · 928 Bytes
/
CMakeLinuxPresets.json
File metadata and controls
48 lines (48 loc) · 928 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
45
46
47
48
{
"version": 6,
"include": [
"CMakeGenericPresets.json"
],
"configurePresets": [
{
"name": "debug-base-Linux",
"hidden": true,
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug"
},
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Linux"
}
},
{
"name": "release-base-Linux",
"hidden": true,
"cacheVariables": {
"CMAKE_BUILD_TYPE": "RelWithDebInfo"
},
"condition": {
"type": "notEquals",
"lhs": "${hostSystemName}",
"rhs": "Windows"
}
},
{
"name": "debug",
"displayName": "Debug Build",
"inherits": [
"root-config",
"debug-base-Linux"
]
},
{
"name": "release",
"displayName": "Release Build",
"inherits": [
"root-config",
"release-base-Linux"
]
}
]
}