mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-26 03:12:07 -05: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)
|