forked from john-stone-ics/complex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CMakePresets.json
64 lines (64 loc) · 1.49 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
{
"version": 2,
"cmakeMinimumRequired": {
"major": 3,
"minor": 19,
"patch": 0
},
"configurePresets": [
{
"name": "ci",
"displayName": "CI build",
"description": "Build configuration for GitHub Actions CI",
"generator": "Ninja",
"binaryDir": "${sourceDir}/build",
"cacheVariables": {
"CMAKE_TOOLCHAIN_FILE": {
"type": "FILEPATH",
"value": "$env{VCPKG_INSTALLATION_ROOT}/scripts/buildsystems/vcpkg.cmake"
},
"CMAKE_BUILD_TYPE": {
"type": "STRING",
"value": "Release"
},
"COMPLEX_BUILD_TESTS": {
"type": "BOOL",
"value": "ON"
},
"COMPLEX_BUILD_DOCS": {
"type": "BOOL",
"value": "OFF"
},
"COMPLEX_BUILD_PYTHON": {
"type": "BOOL",
"value": "OFF"
},
"VCPKG_OVERLAY_TRIPLETS": {
"type": "STRING",
"value": "${sourceDir}/cmake/triplets"
}
}
}
],
"buildPresets": [
{
"name": "ci",
"displayName": "CI build",
"description": "Build configuration for GitHub actions CI",
"configurePreset": "ci",
"configuration": "Release"
}
],
"testPresets": [
{
"name": "ci",
"displayName": "CI build",
"description": "Build configuration for GitHub actions CI",
"configurePreset": "ci",
"configuration": "Release",
"output": {
"outputOnFailure": true
}
}
]
}