Skip to content
Snippets Groups Projects
Commit 79b017f2 authored by Brad King's avatar Brad King Committed by Kitware Robot
Browse files

Merge topic 'FindVulkan-update'

8e58f360 FindVulkan: Update for LunarG SDK import library location on Windows
parents 24c0e229 8e58f360
No related branches found
No related tags found
No related merge requests found
......@@ -39,12 +39,16 @@ if(WIN32)
find_library(Vulkan_LIBRARY
NAMES vulkan-1
PATHS
"$ENV{VULKAN_SDK}/Bin")
"$ENV{VULKAN_SDK}/Lib"
"$ENV{VULKAN_SDK}/Bin"
)
elseif(CMAKE_SIZEOF_VOID_P EQUAL 4)
find_library(Vulkan_LIBRARY
NAMES vulkan-1
PATHS
"$ENV{VULKAN_SDK}/Bin32")
"$ENV{VULKAN_SDK}/Lib32"
"$ENV{VULKAN_SDK}/Bin32"
)
endif()
else()
find_path(Vulkan_INCLUDE_DIR
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment