ladybird/Userland/Services/LookupServer/CMakeLists.txt
Itamar 3a71748e5d Userland: Rename IPC ClientConnection => ConnectionFromClient
This was done with CLion's automatic rename feature and with:
find . -name ClientConnection.h
    | rename 's/ClientConnection\.h/ConnectionFromClient.h/'

find . -name ClientConnection.cpp
    | rename 's/ClientConnection\.cpp/ConnectionFromClient.cpp/'
2022-02-25 22:35:12 +01:00

24 lines
494 B
CMake

serenity_component(
LookupServer
REQUIRED
TARGETS LookupServer
)
compile_ipc(LookupServer.ipc LookupServerEndpoint.h)
compile_ipc(LookupClient.ipc LookupClientEndpoint.h)
set(SOURCES
DNSAnswer.cpp
DNSName.cpp
DNSPacket.cpp
DNSServer.cpp
LookupServer.cpp
LookupServerEndpoint.h
LookupClientEndpoint.h
ConnectionFromClient.cpp
MulticastDNS.cpp
main.cpp
)
serenity_bin(LookupServer)
target_link_libraries(LookupServer LibCore LibIPC LibMain)