cb4785542e
Add an application agnostic State Machine Framework library to Zephyr that provides an easy way for developers to integrate state machines into their application. Twister passed: twister -T tests/lib/smf/ Signed-off-by: Sam Hurst <sbh1187@gmail.com>
12 lines
289 B
CMake
12 lines
289 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
if(NOT CONFIG_EXTERNAL_LIBC)
|
|
add_subdirectory(libc)
|
|
add_subdirectory(posix)
|
|
endif()
|
|
add_subdirectory(gui)
|
|
add_subdirectory(os)
|
|
add_subdirectory(util)
|
|
add_subdirectory_ifdef(CONFIG_SMF smf)
|
|
add_subdirectory_ifdef(CONFIG_OPENAMP open-amp)
|