From e28d883f8d21c7620ab14b0efb80e89fd3ccbed4 Mon Sep 17 00:00:00 2001 From: Andrew Kaster Date: Fri, 11 Aug 2023 19:20:18 -0600 Subject: [PATCH] Ladybird: Link libraries to WebContent impl lib to add dependencies --- Ladybird/WebContent/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/Ladybird/WebContent/CMakeLists.txt b/Ladybird/WebContent/CMakeLists.txt index 8ffc40d5b02..2b08e793a67 100644 --- a/Ladybird/WebContent/CMakeLists.txt +++ b/Ladybird/WebContent/CMakeLists.txt @@ -33,6 +33,7 @@ else() add_library(webcontent STATIC ${WEBCONTENT_SOURCES}) target_include_directories(webcontent PRIVATE ${SERENITY_SOURCE_DIR}/Userland/Services/) target_include_directories(webcontent PRIVATE ${CMAKE_CURRENT_BINARY_DIR}/..) + target_link_libraries(webcontent PRIVATE LibAudio LibCore LibFileSystem LibGfx LibIPC LibJS LibMain LibWeb LibWebSocket LibProtocol LibSQL LibWebView) add_executable(WebContent main.cpp) target_link_libraries(WebContent PRIVATE webcontent)