mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-03-22 21:25:19 +01:00
8 lines
168 B
CMake
8 lines
168 B
CMake
find_package(Vulkan 1.3 REQUIRED)
|
|
|
|
add_library(vk STATIC src/vk.cpp)
|
|
|
|
target_link_libraries(vk PUBLIC Vulkan::Vulkan rx)
|
|
target_include_directories(vk PUBLIC include)
|
|
|