mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-17 13:39:25 +00:00
18 lines
370 B
CMake
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)
|