1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-25 18:25:09 +00:00
serenity/Userland/Services/DHCPClient/CMakeLists.txt
2021-11-30 23:34:40 +01:00

14 lines
213 B
CMake

serenity_component(
DHCPClient
REQUIRED
TARGETS DHCPClient
)
set(SOURCES
DHCPv4Client.cpp
DHCPv4.cpp
main.cpp
)
serenity_bin(DHCPClient)
target_link_libraries(DHCPClient LibCore LibMain)