mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 18:58:12 +00:00
21 lines
449 B
CMake
21 lines
449 B
CMake
serenity_component(
|
|
LookupServer
|
|
REQUIRED
|
|
TARGETS LookupServer
|
|
)
|
|
|
|
compile_ipc(LookupServer.ipc LookupServerEndpoint.h)
|
|
compile_ipc(LookupClient.ipc LookupClientEndpoint.h)
|
|
|
|
set(SOURCES
|
|
DNSServer.cpp
|
|
LookupServer.cpp
|
|
LookupServerEndpoint.h
|
|
LookupClientEndpoint.h
|
|
ConnectionFromClient.cpp
|
|
MulticastDNS.cpp
|
|
main.cpp
|
|
)
|
|
|
|
serenity_bin(LookupServer)
|
|
target_link_libraries(LookupServer LibCore LibDNS LibIPC LibMain)
|