The newest Vulkan SDK Linux builds (1.4.350.0 and 1.4.350.1) have moved libvulkan.so from $VULKAN_SDK/lib/libvulkan.so to $VULKAN_SDK/lib/VulkanLoader/lib/libvulkan.so. The next most recent build from LunarG is 1.4.341.1, which has the old path. I didn't check if the paths have changed on other OSes.
I had to change this line in CMakeLists.txt to the new path to build the code.
The upstream location change is strange to me, but if it's going to stay this way, I can submit a PR to, on Linux, try the new location and fall back to the old location.
The newest Vulkan SDK Linux builds (1.4.350.0 and 1.4.350.1) have moved
libvulkan.sofrom$VULKAN_SDK/lib/libvulkan.soto$VULKAN_SDK/lib/VulkanLoader/lib/libvulkan.so. The next most recent build from LunarG is 1.4.341.1, which has the old path. I didn't check if the paths have changed on other OSes.I had to change this line in CMakeLists.txt to the new path to build the code.
The upstream location change is strange to me, but if it's going to stay this way, I can submit a PR to, on Linux, try the new location and fall back to the old location.