-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathCMakePresets.json
41 lines (41 loc) · 1.15 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
{
"version": 3,
"configurePresets": [
{
"name": "template-vcpkg",
"hidden": true,
"binaryDir": "${sourceDir}/cmake-build-presets/${presetName}",
"cacheVariables": {
"CMAKE_TOOLCHAIN_FILE": {
"type": "FILEPATH",
"value": "${sourceDir}/vcpkg/scripts/buildsystems/vcpkg.cmake"
},
"OPENBLACK_USE_VCPKG": true
}
},
{
"name": "template-system-deps",
"hidden": true,
"binaryDir": "${sourceDir}/cmake-build-presets/${presetName}",
"cacheVariables": {
"OPENBLACK_USE_VCPKG": false
}
},
{
"name": "msvc-16-vcpkg",
"displayName": "Visual Studio 2019 (vcpkg)",
"description": "Configure with vcpkg toolchain and generate Visual Studio 2022 project files for all configurations",
"generator": "Visual Studio 16 2019",
"inherits": "template-vcpkg"
}
],
"buildPresets": [
{
"name": "msvc-16-vcpkg-release",
"configurePreset": "msvc-16-vcpkg",
"displayName": "Build msvc-16-vcpkg-release",
"description": "Build msvc-16-vcpkg Release configuration",
"configuration": "Release"
}
]
}