mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-24 16:39:07 +08:00
6e0289a0c3
Environment variables are referenced with brackets not curly braces. Copying and using the line will not result frustration.
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)
|