9b350f9ecc
Do not include bootloader in flash target when secure boot is enabled. Emit signing warning on all cases where signed apps are enabled (secure boot and signed images) Follow convention of capital letters for SECURE_BOOT_SIGNING_KEY variable, since it is relevant to other components, not just bootloader. Pass signing key and verification key via config, not requiring bootloader to know parent app dir. Misc. variables name corrections
37 lines
1.1 KiB
CMake
37 lines
1.1 KiB
CMake
set(include_dirs port/include port/include/coap libcoap/include libcoap/include/coap2)
|
|
|
|
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")
|
|
|
|
set(COMPONENT_REQUIRES lwip)
|
|
|
|
idf_component_register(SRCS "${srcs}"
|
|
INCLUDE_DIRS "${include_dirs}"
|
|
REQUIRES lwip)
|
|
|
|
# Silence format truncation warning, until it is fixed upstream
|
|
set_source_files_properties(libcoap/src/coap_debug.c PROPERTIES COMPILE_FLAGS -Wno-format-truncation)
|
|
|
|
# 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)
|
|
|