From beee57266f701ac75d41c25198e05a7d40a6dfd5 Mon Sep 17 00:00:00 2001 From: Aaron Miller Date: Tue, 12 Sep 2023 12:36:13 -0700 Subject: [PATCH] Make kompute actually include external SDK headers when requested --- kompute/src/CMakeLists.txt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kompute/src/CMakeLists.txt b/kompute/src/CMakeLists.txt index 4179a81f2..329f9bf93 100644 --- a/kompute/src/CMakeLists.txt +++ b/kompute/src/CMakeLists.txt @@ -73,6 +73,8 @@ endif() if(KOMPUTE_OPT_USE_BUILT_IN_VULKAN_HEADER) target_link_libraries(kompute PUBLIC Vulkan-Headers) +else() + target_link_libraries(kompute PUBLIC Vulkan::Headers) endif() # ####################################################