From 4334929323d24e5b093b5ad6470dc1cbd7de6e7f Mon Sep 17 00:00:00 2001 From: Andrew Kaster Date: Fri, 16 Sep 2022 06:10:46 -0600 Subject: [PATCH] Ladybird/CMake: Link against LibSoftGPU to fix WebGL with serenity LibGL In the future, ladybird should probably use a QOpenGLWidget or similar platform plugin to use the native GL implementation instead of the one in serenity. --- Ladybird/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ladybird/CMakeLists.txt b/Ladybird/CMakeLists.txt index 1c3e450d90..5f54f42c56 100644 --- a/Ladybird/CMakeLists.txt +++ b/Ladybird/CMakeLists.txt @@ -64,7 +64,7 @@ set(SOURCES qt_add_executable(ladybird ${SOURCES} MANUAL_FINALIZATION ) -target_link_libraries(ladybird PRIVATE Qt::Widgets Qt::Network LibWeb LibWebSocket LibGL LibMain) +target_link_libraries(ladybird PRIVATE Qt::Widgets Qt::Network LibWeb LibWebSocket LibGL LibSoftGPU LibMain) set_target_properties(ladybird PROPERTIES MACOSX_BUNDLE_GUI_IDENTIFIER org.serenityos.ladybird