From 56d8e36698f9487471880b89d4a07a84806f1333 Mon Sep 17 00:00:00 2001 From: MacDue Date: Wed, 22 Feb 2023 20:47:48 +0000 Subject: [PATCH] Lagom: Include AccessibilityTreeModel in LibWebView This will be needed for the accessibility inspector in Ladybird. --- Meta/Lagom/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/Meta/Lagom/CMakeLists.txt b/Meta/Lagom/CMakeLists.txt index 743a05593e2..aaf8946d1b9 100644 --- a/Meta/Lagom/CMakeLists.txt +++ b/Meta/Lagom/CMakeLists.txt @@ -404,6 +404,7 @@ if (BUILD_LAGOM) list(APPEND lagom_standard_libraries Web) # WebView + list(APPEND LIBWEBVIEW_SOURCES "../../Userland/Libraries/LibWebView/AccessibilityTreeModel.cpp") list(APPEND LIBWEBVIEW_SOURCES "../../Userland/Libraries/LibWebView/DOMTreeModel.cpp") list(APPEND LIBWEBVIEW_SOURCES "../../Userland/Libraries/LibWebView/StylePropertiesModel.cpp") list(APPEND LIBWEBVIEW_SOURCES "../../Userland/Libraries/LibWebView/ViewImplementation.cpp")