mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-23 16:10:20 +00:00
3a71748e5d
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/'
24 lines
494 B
CMake
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)
|