mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 18:29:01 +08:00
10 lines
296 B
Plaintext
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)
|