mirror of
https://github.com/RGBCube/serenity
synced 2025-05-14 06:24:58 +00:00
22 lines
457 B
CMake
22 lines
457 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
|
|
)
|
|
|
|
set(GENERATED_SOURCES
|
|
LaunchClientEndpoint.h
|
|
LaunchServerEndpoint.h
|
|
)
|
|
|
|
serenity_bin(LaunchServer)
|
|
target_link_libraries(LaunchServer PRIVATE LibCore LibIPC LibDesktop LibFileSystem LibMain)
|