vcpkg/ports/vulkan/usage

10 lines
296 B
Plaintext
Raw Normal View History

2019-03-05 14:39:17 +08:00
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.
2019-03-05 14:39:17 +08:00
CMake:
find_package(Vulkan REQUIRED)
target_link_libraries(main PRIVATE Vulkan::Vulkan)