-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCMakePresets.json
53 lines (53 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
52
53
{
"version": 3,
"cmakeMinimumRequired": {
"major": 3,
"minor": 21,
"patch": 0
},
"configurePresets": [
{
"name": "base",
"hidden": true,
"binaryDir": "${sourceDir}/builds/${presetName}",
"generator": "Ninja Multi-Config",
"cacheVariables": {
"CMAKE_EXPORT_COMPILE_COMMANDS": {
"type": "BOOL",
"value": true
}
}
},
{
"name": "vs2022",
"inherits": [
"base"
],
"generator": "Visual Studio 17 2022",
"architecture": "x64"
}
],
"buildPresets": [
{
"name": "base",
"hidden": true,
"targets":[
"WebViewPluginExample_All"
]
},
{
"name": "vs2022-debug",
"description": "Build using Visual Studio 17 2022 for Debug",
"configurePreset": "vs2022",
"configuration": "Debug",
"inherits": "base"
},
{
"name": "vs2022-release",
"description": "Build using Visual Studio 17 2022 for Release",
"configurePreset": "vs2022",
"configuration": "Release",
"inherits": "base"
}
]
}