From f74e619c1232daf3f341b06fd299c5c8a8f7efd5 Mon Sep 17 00:00:00 2001 From: Johannes Schneider Date: Sun, 14 Jul 2024 07:03:07 +0200 Subject: [PATCH] [cmake] Attempt to fix CI --- src/CMakeLists.txt | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index e559750cd..be28a9732 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -139,10 +139,6 @@ FetchContent_MakeAvailable(toml) FetchContent_MakeAvailable(vma) FetchContent_MakeAvailable(volk) -if (WIN32) - set(VOLK_STATIC_DEFINES VK_USE_PLATFORM_WIN32_KHR) -endif() - target_link_libraries(inexor-vulkan-renderer PUBLIC fmt::fmt @@ -152,6 +148,6 @@ target_link_libraries(inexor-vulkan-renderer spdlog::spdlog tinygltf toml11::toml11 - volk::volk + volk_headers Vulkan::Headers VulkanMemoryAllocator)