ladybird/Userland/Services/LaunchServer/CMakeLists.txt
Gunnar Beutner 631d36fd98 Everywhere: Add component declarations
This adds component declarations so that users can select to not build
certain parts of the OS.
2021-06-17 11:03:51 +02:00

20 lines
398 B
CMake

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