1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-30 19:38:12 +00:00
serenity/Userland/Libraries/LibDNS/CMakeLists.txt
Tom 49de4d5f33 LibDNS: Remove the 'DNS' prefix from the various type and class names
Since all types and class names live in the DNS namespace, we don't
need to spell it out twice each time.
2022-04-15 16:34:26 +01:00

8 lines
118 B
CMake

set(SOURCES
Answer.cpp
Name.cpp
Packet.cpp
)
serenity_lib(LibDNS dns)
target_link_libraries(LibDNS LibC)