Enable Vulkan support in packaged SDL3

This commit is contained in:
Spooks
2026-07-15 14:23:31 -06:00
parent 74c18837f3
commit cd27d3824b
2 changed files with 3 additions and 3 deletions

View File

@@ -35,7 +35,7 @@ jobs:
- name: Install native dependencies
shell: pwsh
run: |
& "$env:VCPKG_INSTALLATION_ROOT\vcpkg.exe" install sdl3:x64-windows vulkan:x64-windows
& "$env:VCPKG_INSTALLATION_ROOT\vcpkg.exe" install sdl3[vulkan]:x64-windows vulkan:x64-windows
- name: Configure native backend
shell: pwsh

View File

@@ -99,7 +99,7 @@ jobs:
- name: Install Windows native GPU dependencies
shell: pwsh
run: |
& "$env:VCPKG_INSTALLATION_ROOT\vcpkg.exe" install sdl3:x64-windows vulkan:x64-windows
& "$env:VCPKG_INSTALLATION_ROOT\vcpkg.exe" install sdl3[vulkan]:x64-windows vulkan:x64-windows
cmake `
-S src/SharpEmu.Gpu.Vulkan.Native `
@@ -207,7 +207,7 @@ jobs:
libwayland-dev \
libxkbcommon-dev \
pkg-config
"$VCPKG_INSTALLATION_ROOT/vcpkg" install sdl3:x64-linux
"$VCPKG_INSTALLATION_ROOT/vcpkg" install sdl3[vulkan]:x64-linux
cmake \
-S src/SharpEmu.Gpu.Vulkan.Native \
-B artifacts/native/gpu-vulkan \