summaryrefslogtreecommitdiff
path: root/Userland/Services/LookupServer/CMakeLists.txt
blob: 185d0a5ecda20de5503a84179c93f8c8f4a5335d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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)