2021-06-15 15:16:32 +02:00
|
|
|
serenity_component(
|
|
|
|
LaunchServer
|
|
|
|
REQUIRED
|
|
|
|
TARGETS LaunchServer
|
|
|
|
)
|
|
|
|
|
2020-05-06 18:40:06 +03:00
|
|
|
compile_ipc(LaunchServer.ipc LaunchServerEndpoint.h)
|
|
|
|
compile_ipc(LaunchClient.ipc LaunchClientEndpoint.h)
|
|
|
|
|
|
|
|
set(SOURCES
|
2022-02-25 12:18:30 +02:00
|
|
|
ConnectionFromClient.cpp
|
2020-05-06 18:40:06 +03:00
|
|
|
Launcher.cpp
|
|
|
|
main.cpp
|
2022-10-12 15:46:13 +03:30
|
|
|
)
|
|
|
|
|
|
|
|
set(GENERATED_SOURCES
|
2020-05-06 18:40:06 +03:00
|
|
|
LaunchClientEndpoint.h
|
|
|
|
LaunchServerEndpoint.h
|
|
|
|
)
|
|
|
|
|
|
|
|
serenity_bin(LaunchServer)
|
2023-05-12 23:53:44 +02:00
|
|
|
target_link_libraries(LaunchServer PRIVATE LibCore LibIPC LibDesktop LibFileSystem LibMain)
|