summaryrefslogtreecommitdiff
path: root/Userland/Services/LookupServer/CMakeLists.txt
blob: 8e2a4f42bdfe470569b51b4577b5899e026963f6 (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
    DNSAnswer.cpp
    DNSName.cpp
    DNSPacket.cpp
    DNSServer.cpp
    LookupServer.cpp
    LookupServerEndpoint.h
    LookupClientEndpoint.h
    ClientConnection.cpp
    MulticastDNS.cpp
    main.cpp
)

serenity_bin(LookupServer)
target_link_libraries(LookupServer LibCore LibIPC LibMain)