2020-07-20 16:53:54 +00:00
|
|
|
# Copyright (c) 2020 ARM Limited. All rights reserved.
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2020-10-12 11:35:19 +00:00
|
|
|
target_include_directories(mbed-os-coap
|
|
|
|
INTERFACE
|
|
|
|
.
|
|
|
|
./mbed-coap
|
|
|
|
./source/include
|
2020-07-20 16:53:54 +00:00
|
|
|
)
|
|
|
|
|
2020-10-12 11:35:19 +00:00
|
|
|
target_sources(mbed-os-coap
|
|
|
|
INTERFACE
|
2020-07-20 16:53:54 +00:00
|
|
|
source/sn_coap_builder.c
|
|
|
|
source/sn_coap_header_check.c
|
|
|
|
source/sn_coap_parser.c
|
|
|
|
source/sn_coap_protocol.c
|
|
|
|
)
|
2020-10-12 11:35:19 +00:00
|
|
|
|
|
|
|
target_compile_definitions(mbed-os-coap
|
|
|
|
INTERFACE
|
|
|
|
MBED_CONF_COAP_PRESENT=1
|
|
|
|
)
|