2017-10-27 21:43:34 +08:00
|
|
|
zephyr_include_directories(.)
|
|
|
|
|
|
|
|
zephyr_library()
|
|
|
|
zephyr_library_sources(dns_pack.c)
|
|
|
|
|
|
|
|
zephyr_library_sources_ifdef(CONFIG_DNS_RESOLVER resolve.c)
|
|
|
|
|
|
|
|
if(CONFIG_MDNS_RESPONDER)
|
|
|
|
zephyr_library_sources(mdns_responder.c)
|
2018-01-11 22:46:44 +08:00
|
|
|
zephyr_library_include_directories(${ZEPHYR_BASE}/subsys/net/ip)
|
2017-10-27 21:43:34 +08:00
|
|
|
endif()
|
|
|
|
|
2018-04-26 20:32:25 +08:00
|
|
|
if(CONFIG_LLMNR_RESPONDER)
|
|
|
|
zephyr_library_sources(llmnr_responder.c)
|
|
|
|
zephyr_library_include_directories(${ZEPHYR_BASE}/subsys/net/ip)
|
|
|
|
endif()
|