2019-04-28 07:38:23 +00:00
|
|
|
set(include_dirs port/include port/include/coap libcoap/include libcoap/include/coap2)
|
2018-01-12 02:49:13 +00:00
|
|
|
|
2019-06-21 06:29:32 +00:00
|
|
|
set(srcs
|
|
|
|
"libcoap/src/address.c"
|
|
|
|
"libcoap/src/async.c"
|
|
|
|
"libcoap/src/block.c"
|
|
|
|
"libcoap/src/coap_event.c"
|
|
|
|
"libcoap/src/coap_hashkey.c"
|
|
|
|
"libcoap/src/coap_session.c"
|
|
|
|
"libcoap/src/coap_time.c"
|
|
|
|
"libcoap/src/coap_debug.c"
|
|
|
|
"libcoap/src/encode.c"
|
|
|
|
"libcoap/src/mem.c"
|
|
|
|
"libcoap/src/net.c"
|
|
|
|
"libcoap/src/option.c"
|
|
|
|
"libcoap/src/pdu.c"
|
|
|
|
"libcoap/src/resource.c"
|
|
|
|
"libcoap/src/str.c"
|
|
|
|
"libcoap/src/subscribe.c"
|
|
|
|
"libcoap/src/uri.c"
|
|
|
|
"libcoap/src/coap_notls.c"
|
|
|
|
"port/coap_io.c")
|
2018-01-12 02:49:13 +00:00
|
|
|
|
2018-03-22 06:27:10 +00:00
|
|
|
set(COMPONENT_REQUIRES lwip)
|
|
|
|
|
2019-04-28 07:38:23 +00:00
|
|
|
idf_component_register(SRCS "${srcs}"
|
2019-06-21 06:29:32 +00:00
|
|
|
INCLUDE_DIRS "${include_dirs}"
|
|
|
|
REQUIRES lwip)
|
2018-01-12 02:49:13 +00:00
|
|
|
|
2019-03-28 08:28:25 +00:00
|
|
|
# Silence format truncation warning, until it is fixed upstream
|
|
|
|
set_source_files_properties(libcoap/src/coap_debug.c PROPERTIES COMPILE_FLAGS -Wno-format-truncation)
|
2019-05-10 02:53:08 +00:00
|
|
|
|
|
|
|
# Needed for coap headers in public builds, also.
|
|
|
|
#
|
|
|
|
# TODO: find a way to move this to a port header
|
|
|
|
target_compile_definitions(${COMPONENT_LIB} PUBLIC WITH_POSIX)
|
|
|
|
|