mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-26 19:32:06 -05:00
631d36fd98
This adds component declarations so that users can select to not build certain parts of the OS.
19 lines
398 B
CMake
19 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)
|