From a2d13c47bd82dd325f8e3fcbd1518c1a7b403ec7 Mon Sep 17 00:00:00 2001 From: Aliaksandr Kalenik Date: Mon, 13 Mar 2023 11:32:43 +0300 Subject: [PATCH] Ladybird: Fix build failure caused by missing WebDriver header Fix the problem that `cmake --build Build/ladybird` started failing with: fatal error: 'WebContent/WebDriverConnection.h' file not found after 11fe34ce0fb827f3bfe9c61c31b3dbe99a894233 --- Ladybird/cmake/EnableLagom.cmake | 1 + 1 file changed, 1 insertion(+) diff --git a/Ladybird/cmake/EnableLagom.cmake b/Ladybird/cmake/EnableLagom.cmake index e790418496..cffa82a948 100644 --- a/Ladybird/cmake/EnableLagom.cmake +++ b/Ladybird/cmake/EnableLagom.cmake @@ -9,6 +9,7 @@ set(LAGOM_BINARY_DIR "${CMAKE_CURRENT_BINARY_DIR}/Lagom") # FIXME: Setting target_include_directories on Lagom libraries might make this unnecessary? include_directories(${SERENITY_SOURCE_DIR}) +include_directories(${SERENITY_SOURCE_DIR}/Userland/Services) include_directories(${SERENITY_SOURCE_DIR}/Userland/Libraries) include_directories(${LAGOM_BINARY_DIR}) include_directories(${LAGOM_BINARY_DIR}/Userland/Services)