2019-04-06 21:08:09 +08:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2017-10-27 21:43:34 +08:00
|
|
|
add_subdirectory(modules)
|
2021-10-01 16:53:29 +08:00
|
|
|
add_subdirectory(backends)
|
2018-08-09 15:56:10 +08:00
|
|
|
|
|
|
|
zephyr_sources_ifdef(
|
|
|
|
CONFIG_SHELL
|
|
|
|
shell.c
|
|
|
|
shell_fprintf.c
|
|
|
|
shell_utils.c
|
|
|
|
shell_ops.c
|
2018-10-04 21:17:00 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
zephyr_sources_ifdef(
|
2021-10-01 16:53:29 +08:00
|
|
|
CONFIG_SHELL_LOG_BACKEND
|
|
|
|
shell_log_backend.c
|
|
|
|
)
|
2019-03-28 18:54:14 +08:00
|
|
|
|
2018-11-27 00:09:56 +08:00
|
|
|
zephyr_sources_ifdef(
|
|
|
|
CONFIG_SHELL_HELP
|
|
|
|
shell_help.c
|
|
|
|
)
|
|
|
|
|
2018-08-09 17:40:02 +08:00
|
|
|
zephyr_sources_ifdef(
|
|
|
|
CONFIG_SHELL_CMDS
|
|
|
|
shell_cmds.c
|
2021-10-01 16:53:29 +08:00
|
|
|
)
|
2018-08-09 17:40:02 +08:00
|
|
|
|
2018-08-09 16:38:15 +08:00
|
|
|
zephyr_sources_ifdef(
|
|
|
|
CONFIG_SHELL_HISTORY
|
|
|
|
shell_history.c
|
2021-10-01 16:53:29 +08:00
|
|
|
)
|
2018-08-09 17:57:31 +08:00
|
|
|
|
|
|
|
zephyr_sources_ifdef(
|
|
|
|
CONFIG_SHELL_WILDCARD
|
|
|
|
shell_wildcard.c
|
2021-10-01 16:53:29 +08:00
|
|
|
)
|