mirror of
https://github.com/RGBCube/serenity
synced 2025-07-24 22:37:34 +00:00
13 lines
309 B
CMake
13 lines
309 B
CMake
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)
|