-
Notifications
You must be signed in to change notification settings - Fork 72
/
CMakePresets.json
51 lines (51 loc) · 1.36 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
{
"version": 4,
"configurePresets": [
{
"name": "wwiv-default",
"displayName": "wwiv default build",
"description": "Ninja, x86 debug",
"generator": "Ninja",
"binaryDir": "${sourceDir}/_build",
"architecture": {
"value": "x86",
"strategy": "external"
},
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Debug",
"CMAKE_INSTALL_PREFIX": "${sourceDir}/install"
}
},
{
"name": "VSCode Debug",
"description": "",
"displayName": "",
"inherits": [
"windows-default"
]
}
],
"buildPresets": [
{
"name": "WWIV Debug Build",
"displayName": "WWIV Debug Build",
"configurePreset": "wwiv-default",
"description": "Default Windows debug build (MSVC)"
}
],
"testPresets": [
{
"name": "wwiv-test-default",
"description": "Enable output on failure",
"configurePreset": "linux-debug",
"output": {
"outputOnFailure": true
}
},
{
"name": "core-test-windows",
"inherits": "wwiv-test-default",
"configurePreset": "x86-debug"
}
]
}