-
Notifications
You must be signed in to change notification settings - Fork 40
/
CMakePresets.json
58 lines (58 loc) · 1.3 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"version": 6,
"configurePresets": [
{
"name": "base",
"hidden": true,
"generator": "Ninja",
"binaryDir": "build/${presetName}"
},
{
"name": "linux",
"inherits" : "base",
"cacheVariables": {
"COPEN_BUILD_TESTING": true
}
},
{
"name": "docs",
"inherits" : "base",
"cacheVariables": {
"COPEN_BUILD_DOCS": true
}
}
],
"buildPresets": [
{
"name": "linux",
"configurePreset": "linux"
},
{
"name": "docs",
"targets": ["sphinx-html", "sphinx-spelling", "codespell"],
"configurePreset": "docs"
}
],
"packagePresets": [
{
"name": "linux",
"configurePreset": "linux",
"generators": [
"ZIP"
]
}
],
"testPresets": [
{
"name": "linux",
"configurePreset": "linux",
"output": {
"outputOnFailure": true
},
"execution": {
"noTestsAction": "error",
"stopOnFailure": true
}
}
]
}