diff options
| author | Connor Fitzgerald <connorwadefitzgerald@gmail.com> | 2019-03-05 01:39:17 -0500 |
|---|---|---|
| committer | Victor Romero <romerosanchezv@gmail.com> | 2019-03-04 22:39:17 -0800 |
| commit | c5fc595443723a8ece6c0aa166eb0842982cd371 (patch) | |
| tree | 4de98fff16b8f78063fe897b066a0872fd2d33ed | |
| parent | c7d4696a8857235ec8e3497e43f0d6fe3d4b5396 (diff) | |
| download | vcpkg-c5fc595443723a8ece6c0aa166eb0842982cd371.tar.gz vcpkg-c5fc595443723a8ece6c0aa166eb0842982cd371.zip | |
[vulkan] Add usage information (#5533)
| -rw-r--r-- | ports/vulkan/usage | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ports/vulkan/usage b/ports/vulkan/usage new file mode 100644 index 000000000..7924cf3cd --- /dev/null +++ b/ports/vulkan/usage @@ -0,0 +1,9 @@ +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) |
