ladybird/Services/LaunchServer/CMakeLists.txt
Linus Groh 58890e03b6 Everywhere: Move AppFile from LibGUI to LibDesktop
This was mentioned in #4574, and the more I think about it the more it
feels just right - let's move it there! :^)
Having to link LaunchServer against LibGUI explicitly should've been
telling enough...
2020-12-28 01:28:07 +01:00

14 lines
320 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 LibDesktop)