vcpkg: Enable vulkan feature for sdl2

The comp_window_peek needs sdl2 with Vulkan supporting, and normal sdl2
installation doesn't support Vulkan. So we need to install Vulkan
feature of sdl2 explicitly to let sdl2 work with Vulkan, and let
comp_window_peek works on Windows.
This commit is contained in:
utzcoz 2023-04-19 10:55:23 +00:00
parent c0d242e1ed
commit 6032b4dc8b

View file

@ -35,7 +35,13 @@
"gui": {
"description": "Debug GUI support",
"dependencies": [
"sdl2"
{
"name": "sdl2",
"features": [
"base",
"vulkan"
]
}
]
}
}