1e889b633c
* Added Zephyr settings subsys to enable storing of BACnet values according to BACnet object property value path. * Added BACnet Basic features to enable basic samples. Refactored the zephyr BACnet profile B-SS sample to use BACnet basic subsys.
18 lines
373 B
CMake
18 lines
373 B
CMake
# CMake for BACnet settings library
|
|
#
|
|
# @author Steve Karg <skarg@users.sourceforge.net>
|
|
# @date May 2024
|
|
# @copyright SPDX-License-Identifier: MIT
|
|
zephyr_library(bacnet_settings)
|
|
|
|
zephyr_library_include_directories(include)
|
|
|
|
zephyr_library_sources(
|
|
bacnet_storage.c
|
|
bacnet_settings.c
|
|
)
|
|
|
|
zephyr_library_sources_ifdef(CONFIG_BACNET_SETTINGS_SHELL
|
|
bacnet_shell.c
|
|
)
|