forked from janhsimon/openxr-vulkan-example
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCMakePresets.json
More file actions
36 lines (36 loc) · 891 Bytes
/
CMakePresets.json
File metadata and controls
36 lines (36 loc) · 891 Bytes
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
{
"version": 8,
"configurePresets": [
{
"name": "msvc-x64",
"displayName": "MSVC x64 (Debug/Release)",
"description": "MSVC toolchain for x64 (Visual Studio 2022)",
"generator": "Visual Studio 17 2022",
"architecture": "x64",
"binaryDir": "${sourceDir}/build/msvc-x64",
"cacheVariables": {
"CMAKE_TOOLCHAIN_FILE": "${sourceDir}/build/msvc-x64/vcpkg-scripts/vcpkg.cmake"
},
"environment": {
"PATH": "$penv{PATH}"
},
"vendor": {
"microsoft.com/VisualStudioSettings/CMake/1.0": {
"hostArchitecture": "x64"
}
}
}
],
"buildPresets": [
{
"name": "msvc-x64-Debug",
"configurePreset": "msvc-x64",
"configuration": "Debug"
},
{
"name": "msvc-x64-Release",
"configurePreset": "msvc-x64",
"configuration": "Release"
}
]
}