diff options
author | Andreas Kling <kling@serenityos.org> | 2022-10-06 16:47:04 +0200 |
---|---|---|
committer | Andrew Kaster <andrewdkaster@gmail.com> | 2022-12-25 07:58:58 -0700 |
commit | 2b1d294dc6d92c55135810cc9b404e40309d9314 (patch) | |
tree | f07bc174e904afbdcb772a1a36e64d774ceab9cc | |
parent | 6d189696da888cef1c2676dc87ec3a02d1c9caca (diff) | |
download | serenity-2b1d294dc6d92c55135810cc9b404e40309d9314.zip |
Ladybird: Let Lagom build the IPC endpoints for WebContent
-rw-r--r-- | Ladybird/WebContent/CMakeLists.txt | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Ladybird/WebContent/CMakeLists.txt b/Ladybird/WebContent/CMakeLists.txt index de967f37e9..5d4d995d95 100644 --- a/Ladybird/WebContent/CMakeLists.txt +++ b/Ladybird/WebContent/CMakeLists.txt @@ -1,8 +1,5 @@ set(WEBCONTENT_SOURCE_DIR ${SERENITY_SOURCE_DIR}/Userland/Services/WebContent/) -compile_ipc(${WEBCONTENT_SOURCE_DIR}/WebContentServer.ipc WebContentServerEndpoint.h) -compile_ipc(${WEBCONTENT_SOURCE_DIR}/WebContentClient.ipc WebContentClientEndpoint.h) - set(WEBCONTENT_SOURCES ${WEBCONTENT_SOURCE_DIR}/ConnectionFromClient.cpp ${WEBCONTENT_SOURCE_DIR}/ConsoleGlobalObject.cpp @@ -16,8 +13,6 @@ set(WEBCONTENT_SOURCES ../Utilities.cpp ../WebSocketClientManagerLadybird.cpp ../WebSocketLadybird.cpp - WebContentClientEndpoint.h - WebContentServerEndpoint.h main.cpp ) |