<div dir="ltr"><div dir="ltr" class="gmail_msg">Hello,<div class="gmail_msg"><br class="gmail_msg"></div><div class="gmail_msg">When I run "find_package(VULKAN)" in a CMakeLists for a Visual Studio 2015 32-bit project, the ${Vulkan_LIBRARY} and ${Vulkan_LIBRARIES} variables both point to the "Bin" folder for the Vulkan installation instead of the "Bin32" folder.</div><div class="gmail_msg"><br class="gmail_msg"></div><div class="gmail_msg">I looked at the FindVulkan.cmake module and even put MESSAGE(STATUS ...) on the "elseif(CMAKE_SIZEOF_VOID_P EQUAL 4)" to see if I made a mistake setting up. The message does indeed print confirming that my pointer size is 4 and thus the current toolchain selected is 32 bit. </div><div class="gmail_msg"><br></div><div class="gmail_msg">What's perplexing is that when I do a MESSAGE(STATUS ${Vulkan_LIBRARY}) the path is:</div><div class="gmail_msg"><p style="margin:0px"><br></p><p style="margin:0px">D:/VulkanSDK/<a href="http://1.0.37.0/Bin/vulkan-1.lib">1.0.37.0/Bin/vulkan-1.lib</a></p><p style="margin:0px"><br></p><p style="margin:0px">instead of</p><p style="margin:0px"><br></p><p style="margin:0px">D:/VulkanSDK/<a href="http://1.0.37.0/Bin32/vulkan-1.lib">1.0.37.0/Bin32/vulkan-1.lib</a> </p><p style="margin:0px"><br></p><p style="margin:0px">It makes no sense. Line 47 of FindVulkan.cmake has Bin32. Why is CMake ignoring 32?</p></div></div></div>