From 24ad8607fac63f630b1f45a28454f7ef4a4c7399 Mon Sep 17 00:00:00 2001 From: DH Date: Sat, 4 Oct 2025 16:58:39 +0300 Subject: [PATCH] VulkanLoader: do not enable xcb support --- 3rdparty/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/3rdparty/CMakeLists.txt b/3rdparty/CMakeLists.txt index 49b3e9caf..981498b9a 100644 --- a/3rdparty/CMakeLists.txt +++ b/3rdparty/CMakeLists.txt @@ -279,6 +279,8 @@ if (NOT COMPILE_VULKAN_LOADER OR ANDROID OR APPLE) endif() if (COMPILE_VULKAN_LOADER) + set(BUILD_WSI_XCB_SUPPORT off) + add_subdirectory(Vulkan-Loader) target_link_libraries(3rdparty_vulkan INTERFACE Vulkan::Loader) endif()