-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakePresets.json
More file actions
63 lines (63 loc) · 1.35 KB
/
CMakePresets.json
File metadata and controls
63 lines (63 loc) · 1.35 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
{
"version": 8,
"configurePresets": [
{
"name": "base",
"hidden": true,
"cacheVariables": {
"CMAKE_CXX_STANDARD": "17",
"CMAKE_CXX_EXTENSIONS": false,
"CMAKE_INTERPROCEDURAL_OPTIMIZATION": true,
"CMAKE_INTERPROCEDURAL_OPTIMIZATION_DEBUG": false,
"CMAKE_OPTIMIZE_DEPENDENCIES": true
},
"warnings": {
"dev": true
}
},
{
"name": "vs2022",
"inherits": "base",
"displayName": "Visual Studio 2022",
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Windows"
},
"generator": "Visual Studio 17 2022",
"binaryDir": "./_vs"
},
{
"name": "ci",
"hidden": true,
"cacheVariables": {
"BASALT_BUILD_WARNINGS_AS_ERRORS": "ON"
},
"errors": {
"dev": true
}
},
{
"name": "vs2022-ci",
"displayName": "CI: Visual Studio 2022",
"inherits": ["ci", "vs2022"]
}
],
"buildPresets": [
{
"name": "vs2022",
"displayName": "Visual Studio 2022",
"condition": {
"type": "equals",
"lhs": "${hostSystemName}",
"rhs": "Windows"
},
"configurePreset": "vs2022"
},
{
"name": "vs2022-ci",
"displayName": "CI: Visual Studio 2022",
"inherits": "vs2022"
}
]
}