mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-23 17:33:12 +00:00
10 lines
267 B
CMake
10 lines
267 B
CMake
include_guard()
|
|
|
|
if (NOT APPLE)
|
|
find_package(VulkanHeaders CONFIG QUIET)
|
|
find_package(Vulkan QUIET)
|
|
if (VulkanHeaders_FOUND AND Vulkan_FOUND)
|
|
set(HAS_VULKAN ON CACHE BOOL "" FORCE)
|
|
add_compile_definitions(USE_VULKAN=1)
|
|
endif()
|
|
endif()
|