-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCMakePresets.json
More file actions
80 lines (80 loc) · 1.66 KB
/
CMakePresets.json
File metadata and controls
80 lines (80 loc) · 1.66 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
72
73
74
75
76
77
78
79
80
{
"version": 3,
"configurePresets": [
{
"name": "default",
"binaryDir": "${sourceDir}/build",
"generator": "Ninja",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"BUILD_TESTING": "ON"
}
}
],
"buildPresets": [
{
"name": "cpropep",
"configurePreset": "default",
"targets": ["cpropep"]
},
{
"name": "prop",
"configurePreset": "default",
"targets": ["prop"]
},
{
"name": "grain",
"configurePreset": "default",
"targets": ["grain"]
},
{
"name": "lrd",
"configurePreset": "default",
"targets": ["lrd"]
},
{
"name": "mcp",
"configurePreset": "default",
"targets": ["mcp"]
},
{
"name": "analyser",
"configurePreset": "default",
"targets": ["analyser"]
},
{
"name": "rockflight",
"configurePreset": "default",
"targets": ["rockflight"]
},
{
"name": "gpcp",
"configurePreset": "default",
"description": "Compiles only the libgpcp library and its test executable",
"targets": [ "libgpcp", "test_gpcp" ]
},
{
"name": "all",
"configurePreset": "default"
}
],
"testPresets": [
{
"name": "all-tests",
"configurePreset": "default",
"output": {
"outputOnFailure": true
},
"execution": {
"noTestsAction": "error",
"stopOnFailure": false
}
},
{
"name": "test-gpcp",
"configurePreset": "default",
"description": "Run gpcp tests (automatically builds if using IDEs)",
"filter": { "include": { "name": "gpcp" } }
}
]
}