diff options
author | Aliaksandr Kalenik <kalenik.aliaksandr@gmail.com> | 2023-03-13 11:32:43 +0300 |
---|---|---|
committer | Tim Flynn <trflynn89@pm.me> | 2023-03-19 09:53:57 -0400 |
commit | a2d13c47bd82dd325f8e3fcbd1518c1a7b403ec7 (patch) | |
tree | 1b483914d1631a66e01d3c596f36751360c77500 | |
parent | 16a4949e33d08f434d98023dd3af394096f3bb1d (diff) | |
download | serenity-a2d13c47bd82dd325f8e3fcbd1518c1a7b403ec7.zip |
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
-rw-r--r-- | Ladybird/cmake/EnableLagom.cmake | 1 |
1 files changed, 1 insertions, 0 deletions
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) |