mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 01:32:14 -05:00
bd97442771
Also require a specific ICU version to not run into unexpected problems.
8 lines
250 B
CMake
8 lines
250 B
CMake
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()
|