diff options
author | Zephyron <zephyron@citron-emu.org> | 2025-01-16 16:55:25 +1000 |
---|---|---|
committer | Zephyron <zephyron@citron-emu.org> | 2025-01-16 16:55:25 +1000 |
commit | f560ac024dd835ef5f0612a69f746c610ca0fee5 (patch) | |
tree | bfc5ed6847603971b3f2e99c7d17f43beceb12f1 /CMakeLists.txt | |
parent | 496b010927d7db3bcd6c52ddeadf34b9d9ca4f3a (diff) |
build: update vulkan headers to 1.4.304 and vcpkg baseline
Update VulkanHeaders minimum required version from 1.3.274 to 1.4.304 and
update vcpkg baseline to latest version to ensure compatibility with newer
Vulkan features.
Changes:
- VulkanHeaders: 1.3.274 -> 1.4.304
- vcpkg baseline: c82f74667 -> 7adc2e4d4
Diffstat (limited to 'CMakeLists.txt')
-rw-r--r-- | CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 23df5afc0..eab04f370 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -327,7 +327,7 @@ find_package(ZLIB REQUIRED) find_package(zstd REQUIRED) if (NOT CITRON_USE_EXTERNAL_VULKAN_HEADERS) - find_package(VulkanHeaders 1.3.274 REQUIRED) + find_package(VulkanHeaders 1.4.304 REQUIRED) endif() if (NOT CITRON_USE_EXTERNAL_VULKAN_UTILITY_LIBRARIES) |