mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
631d36fd98
This adds component declarations so that users can select to not build certain parts of the OS.
20 lines
398 B
CMake
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)
|