-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCMakePresets.json
More file actions
54 lines (54 loc) · 1.44 KB
/
CMakePresets.json
File metadata and controls
54 lines (54 loc) · 1.44 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
{
"version": 8,
"configurePresets": [
{
"name": "default",
"generator": "Visual Studio 18 2026",
"architecture": "x64",
"binaryDir": "${sourceDir}/build/${presetName}",
"toolchainFile": "./vcpkg/scripts/buildsystems/vcpkg.cmake"
},
{
"name": "windows-vs2026",
"inherits": "default",
"displayName": "Windows with Visual Studio 2026",
"description": "Windows native build using Visual Studio 2026 generator and default toolchain/compiler",
"generator": "Visual Studio 18 2026"
},
{
"name": "windows-vs2022",
"inherits": "default",
"displayName": "Windows with Visual Studio 2022",
"description": "Windows native build using Visual Studio 2022 generator and default toolchain/compiler",
"generator": "Visual Studio 17 2022"
}
],
"buildPresets": [
{
"name": "windows-vs2026-release",
"configuration": "Release",
"configurePreset": "windows-vs2026"
},
{
"name": "windows-vs2026-debug",
"configuration": "Debug",
"configurePreset": "windows-vs2026"
},
{
"name": "windows-vs2022-release",
"configuration": "Release",
"configurePreset": "windows-vs2022"
},
{
"name": "windows-vs2022-debug",
"configuration": "Debug",
"configurePreset": "windows-vs2022"
}
],
"testPresets": [
{
"name": "default",
"configurePreset": "default"
}
]
}