mirror of
https://github.com/pineappleEA/pineapple-src.git
synced 2025-01-20 13:44:05 -05:00
10 lines
296 B
Plaintext
Executable File
10 lines
296 B
Plaintext
Executable File
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)
|