summaryrefslogtreecommitdiff
path: root/Userland/Services/DHCPClient/CMakeLists.txt
blob: c6f8b729f0365d4bb18a98667ea65f659289dcda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
serenity_component(
    DHCPClient
    REQUIRED
    TARGETS DHCPClient
)

set(SOURCES
    DHCPv4Client.cpp
    DHCPv4.cpp
    main.cpp
)

serenity_bin(DHCPClient)
target_link_libraries(DHCPClient LibCore LibMain)