-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakePresets.json
More file actions
61 lines (61 loc) · 1.2 KB
/
CMakePresets.json
File metadata and controls
61 lines (61 loc) · 1.2 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
{
"version": 6,
"configurePresets": [
{
"name": "windows-base",
"hidden": true,
"generator": "Ninja Multi-Config",
"binaryDir": "${sourceDir}/out/build/${presetName}",
"cacheVariables": {
"CMAKE_C_COMPILER": "cl.exe",
"CMAKE_CXX_COMPILER": "cl.exe",
"MARKER_COUNT": "100",
"PLUGIN_VERSION": "0.6.2"
}
},
{
"name": "windows-x64",
"inherits": "windows-base"
}
],
"buildPresets": [
{
"name": "windows-x64-debug",
"configurePreset": "windows-x64",
"configuration": "Debug"
},
{
"name": "windows-x64-release",
"configurePreset": "windows-x64",
"configuration": "Release"
}
],
"workflowPresets": [
{
"name": "release-flow",
"steps": [
{
"type": "configure",
"name": "windows-x64"
},
{
"type": "build",
"name": "windows-x64-release"
}
]
},
{
"name": "debug-flow",
"steps": [
{
"type": "configure",
"name": "windows-x64"
},
{
"type": "build",
"name": "windows-x64-debug"
}
]
}
]
}