-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakePresets.json
65 lines (65 loc) · 1.57 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
59
60
61
62
63
64
65
{
"version": 6,
"configurePresets": [
{
"name": "full-test",
"description": "Build with all dependencies, to test a full build.",
"cacheVariables": {
"CMAKE_BUILD_TYPE": "Release",
"GD_BUILD_TESTING": "ON",
"GD_BUILD_APPS": "ON",
"GD_BUILD_BINDINGS": "ON"
},
"warnings": {
"dev": false
}
},
{
"name": "gh-Linux",
"description": "Preset for github actions CI Linux configure",
"inherits": "full-test"
},
{
"name": "gh-macOS",
"description": "Preset for github actions CI macOS configure",
"inherits": "full-test"
},
{
"name": "gh-Windows",
"description": "Preset for github actions CI Windows configure",
"inherits": "full-test"
}
],
"buildPresets" : [
{
"name": "gh-Linux",
"description": "Preset for github actions CI Linux build",
"configurePreset": "gh-Linux",
"jobs": 4
},
{
"name": "gh-macOS",
"description": "Preset for github actions CI macOS build",
"configurePreset": "gh-macOS",
"jobs": 3
},
{
"name": "gh-Windows",
"description": "Preset for github actions CI Windows build",
"configurePreset": "gh-Windows",
"jobs": 4,
"configuration": "Release"
}
],
"testPresets": [
{
"name": "test-built",
"description": "Test the compiled targets in their build directory",
"configurePreset": "full-test",
"output": {
"outputOnFailure": true,
"verbosity": "verbose"
}
}
]
}