1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-25 18:25:09 +00:00
serenity/Userland/Services/ConfigServer/CMakeLists.txt
2021-11-23 15:44:59 +01:00

18 lines
370 B
CMake

serenity_component(
ConfigServer
REQUIRED
TARGETS ConfigServer
)
compile_ipc(ConfigServer.ipc ConfigServerEndpoint.h)
compile_ipc(ConfigClient.ipc ConfigClientEndpoint.h)
set(SOURCES
ClientConnection.cpp
main.cpp
ConfigServerEndpoint.h
ConfigClientEndpoint.h
)
serenity_bin(ConfigServer)
target_link_libraries(ConfigServer LibIPC LibMain)