-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCMakePresets.json
42 lines (42 loc) · 937 Bytes
/
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
{
"version": 6,
"configurePresets": [
{
"name": "ci-ninja-multi",
"displayName": "Ninja Multi-Config",
"generator": "Ninja Multi-Config",
"binaryDir": "build",
"cacheVariables": {
"CMAKE_C_COMPILER_LAUNCHER": "sccache",
"CMAKE_CXX_COMPILER_LAUNCHER": "sccache"
}
}
],
"buildPresets": [
{
"name": "ci-ninja-multi-debug",
"configurePreset": "ci-ninja-multi",
"configuration": "Debug"
},
{
"name": "ci-ninja-multi-release",
"configurePreset": "ci-ninja-multi",
"configuration": "Release"
}
],
"testPresets": [
{
"name": "ci-test-release",
"configurePreset": "ci-ninja-multi",
"configuration": "Release"
}
],
"packagePresets": [
{
"name": "ci-package-release",
"configurePreset": "ci-ninja-multi",
"configurations": ["Release"]
}
],
"workflowPresets": []
}