mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-26 11:21:09 +08:00
a403a65350
* [vulkan] Fix SDK detection fails for official debian packages Fixes #13331 * [vulkan] Update version database
9 lines
348 B
Plaintext
9 lines
348 B
Plaintext
vulkan is compatible with built-in CMake targets:
|
|
|
|
# https://cmake.org/cmake/help/latest/module/FindVulkan.html
|
|
find_package(Vulkan REQUIRED)
|
|
target_link_libraries(main PRIVATE Vulkan::Vulkan)
|
|
|
|
The vulkan package does not provide direct Visual Studio integration.
|
|
For manual integration, add $(VULKAN_SDK)/include to your include path.
|