1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 10:47:35 +00:00

CMake: Use a helper file to find GL and EGL in a platform agnostic way

Also add a flag to turn off accelerated graphics entirely.
This commit is contained in:
Andrew Kaster 2023-10-29 16:31:36 -06:00 committed by Andrew Kaster
parent bec1c1fff7
commit 49d21619d4
5 changed files with 23 additions and 7 deletions

View file

@ -1,4 +1,5 @@
include(libweb_generators)
include(accelerated_graphics)
set(SOURCES
ARIA/AriaData.cpp
@ -626,10 +627,6 @@ set(SOURCES
XML/XMLDocumentBuilder.cpp
)
if (LINUX)
list(APPEND SOURCES Painting/PaintingCommandExecutorGPU.cpp)
endif()
invoke_generator(
"AriaRoles.cpp"
Lagom::GenerateAriaRoles
@ -663,7 +660,8 @@ serenity_lib(LibWeb web)
target_link_libraries(LibWeb PRIVATE LibCore LibCrypto LibJS LibMarkdown LibHTTP LibGemini LibGL LibGUI LibGfx LibIPC LibLocale LibRegex LibSoftGPU LibSyntax LibTextCodec LibUnicode LibAudio LibVideo LibWasm LibXML LibIDL)
link_with_locale_data(LibWeb)
if (LINUX)
if (HAS_ACCELERATED_GRAPHICS)
target_sources(LibWeb PRIVATE Painting/PaintingCommandExecutorGPU.cpp)
target_link_libraries(LibWeb PRIVATE LibAccelGfx)
endif()