mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-03 13:02:09 +02:00
22 lines
449 B
CMake
22 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)
|