Files
banan-os/userspace/programs/resolver/CMakeLists.txt
Bananymous 33a0f562d3 resolver: Add support for CNAME
Also rework resolver's send format and convert test-tcp and nslookup to
use getaddrinfo
2025-04-22 08:36:44 +03:00

12 lines
231 B
CMake

set(SOURCES
main.cpp
)
add_executable(resolver ${SOURCES})
banan_link_library(resolver ban)
banan_link_library(resolver libc)
target_compile_options(resolver PRIVATE -Wno-maybe-uninitialized)
install(TARGETS resolver OPTIONAL)