vcpkg/ports/vulkan/usage
Sean Farrell 6e0289a0c3 Fix how to use VULKAN_SDK under Visual Studio (#8092)
Environment variables are referenced with brackets not curly braces. Copying and using the line will not result frustration.
2019-09-09 08:48:38 -07:00

10 lines
296 B
Plaintext

The package vulkan does not provide cmake or visual studio integration directly.
However, it can still easily be used.
Visual Studio:
Include $(VULKAN_SDK)/include to your include path.
CMake:
find_package(Vulkan REQUIRED)
target_link_libraries(main PRIVATE Vulkan::Vulkan)