mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
ce2f1b845f
Otherwise, we end up propagating those dependencies into targets that link against that library, which creates unnecessary link-time dependencies. Also included are changes to readd now missing dependencies to tools that actually need them.
25 lines
482 B
CMake
25 lines
482 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
|
|
ConnectionFromClient.cpp
|
|
MulticastDNS.cpp
|
|
main.cpp
|
|
)
|
|
|
|
set(GENERATED_SOURCES
|
|
LookupServerEndpoint.h
|
|
LookupClientEndpoint.h
|
|
)
|
|
|
|
serenity_bin(LookupServer)
|
|
target_link_libraries(LookupServer PRIVATE LibCore LibDNS LibIPC LibMain)
|