mirror of
https://github.com/RGBCube/serenity
synced 2025-05-25 19:05:07 +00:00
19 lines
406 B
CMake
19 lines
406 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 LibMain)
|