zephyr/subsys/mgmt/mcumgr/util/CMakeLists.txt
Jamie McCrae 95697b5fcf mgmt: mcumgr: Replace non-zephyr cmake functions with zephyr versions
This fixes an issue whilst investigating using iterable sections,
which cannot be used when the non-zephyr prefixed functions are
used. It also resolves a possible critical bug intoduced with the
MCUmgr rework whereby functions or elements seem to have silently
dropped.

Signed-off-by: Jamie McCrae <jamie.mccrae@nordicsemi.no>
2022-12-19 13:02:32 +01:00

14 lines
405 B
CMake

#
# Copyright (c) 2018-2021 mcumgr authors
# Copyright (c) 2022 Nordic Semiconductor ASA
#
# SPDX-License-Identifier: Apache-2.0
#
# MCUmgr utilities, for use within the library.
# API interface for utilities is exposed by mgmt_mcumgr_util,
# and should not be exposed outside of mgmt_mcumgr.
zephyr_library(mgmt_mcumgr_util)
zephyr_library_sources(src/zcbor_bulk.c)
zephyr_include_directories(include)