mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
8 lines
181 B
CMake
8 lines
181 B
CMake
|
if (NOT APPLE)
|
||
|
find_package(Vulkan QUIET)
|
||
|
if (Vulkan_FOUND)
|
||
|
set(HAS_VULKAN ON CACHE BOOL "" FORCE)
|
||
|
add_compile_definitions(USE_VULKAN=1)
|
||
|
endif()
|
||
|
endif()
|