From 2b1d294dc6d92c55135810cc9b404e40309d9314 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Thu, 6 Oct 2022 16:47:04 +0200 Subject: [PATCH] Ladybird: Let Lagom build the IPC endpoints for WebContent --- Ladybird/WebContent/CMakeLists.txt | 5 ----- 1 file changed, 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 )