blob: e6f49231afd7fa95d5826217f64421c0cd5f88c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
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 LibMain)
|