1# SPDX-License-Identifier: Apache-2.0 2 3zephyr_include_directories(.) 4 5zephyr_library() 6zephyr_library_sources(dns_pack.c) 7 8zephyr_library_sources_ifdef(CONFIG_DNS_RESOLVER resolve.c) 9zephyr_library_sources_ifdef(CONFIG_DNS_SD dns_sd.c) 10 11if(CONFIG_MDNS_RESPONDER) 12 zephyr_library_sources(mdns_responder.c) 13 zephyr_library_include_directories(${ZEPHYR_BASE}/subsys/net/ip) 14endif() 15 16if(CONFIG_LLMNR_RESPONDER) 17 zephyr_library_sources(llmnr_responder.c) 18 zephyr_library_include_directories(${ZEPHYR_BASE}/subsys/net/ip) 19endif() 20