From 4d762fd3a647c1a8d77afb3c198524556336c744 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Wed, 5 Oct 2022 14:37:25 +0200 Subject: [PATCH] Lagom: Add Build WebContentClient as part of Lagom's LibWebView This will allow us to use it in Ladybird. :^) --- Meta/Lagom/CMakeLists.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Meta/Lagom/CMakeLists.txt b/Meta/Lagom/CMakeLists.txt index 4b89801627..3758456b12 100644 --- a/Meta/Lagom/CMakeLists.txt +++ b/Meta/Lagom/CMakeLists.txt @@ -586,9 +586,10 @@ if (BUILD_LAGOM) # WebView list(APPEND LIBWEBVIEW_SOURCES "../../Userland/Libraries/LibWebView/DOMTreeModel.cpp") + list(APPEND LIBWEBVIEW_SOURCES "../../Userland/Libraries/LibWebView/WebContentClient.cpp") lagom_lib(WebView webview SOURCES ${LIBWEBVIEW_SOURCES} - LIBS LibGUI) + LIBS LibGUI LibWeb) # x86 # FIXME: Excluding arm64 is a temporary hack to circumvent a build problem