ladybird/Userland/Services/LaunchServer/CMakeLists.txt
Itamar 3a71748e5d Userland: Rename IPC ClientConnection => ConnectionFromClient
This was done with CLion's automatic rename feature and with:
find . -name ClientConnection.h
    | rename 's/ClientConnection\.h/ConnectionFromClient.h/'

find . -name ClientConnection.cpp
    | rename 's/ClientConnection\.cpp/ConnectionFromClient.cpp/'
2022-02-25 22:35:12 +01:00

20 lines
410 B
CMake

serenity_component(
LaunchServer
REQUIRED
TARGETS LaunchServer
)
compile_ipc(LaunchServer.ipc LaunchServerEndpoint.h)
compile_ipc(LaunchClient.ipc LaunchClientEndpoint.h)
set(SOURCES
ConnectionFromClient.cpp
Launcher.cpp
main.cpp
LaunchClientEndpoint.h
LaunchServerEndpoint.h
)
serenity_bin(LaunchServer)
target_link_libraries(LaunchServer LibCore LibIPC LibDesktop LibMain)