Was getting compilation error due to `CONFIG_SHELL_CMD_ROOT` not being defined whe building the sample under certain configurations. The `CONFIG_SHELL_CMD_ROOT` is defined and used only when `CONFIG_SHELL_START_OBSCURED` is enabled, we can simply move it to another file and rely on CMakeLists.txt to compile. Run the `login_init` with `SYS_INIT` so that the `main()` do not need to have knowledge of its existence. Signed-off-by: Yong Cong Sin <ycsin@meta.com> Signed-off-by: Yong Cong Sin <yongcong.sin@gmail.com>
11 lines
448 B
CMake
11 lines
448 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
cmake_minimum_required(VERSION 3.20.0)
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
|
project(shell_module)
|
|
|
|
target_sources(app PRIVATE src/main.c src/test_module.c)
|
|
target_sources_ifdef(CONFIG_SHELL_DYNAMIC_CMDS app PRIVATE src/dynamic_cmd.c)
|
|
target_sources_ifdef(CONFIG_SHELL_BACKEND_SERIAL app PRIVATE src/uart_reinit.c)
|
|
target_sources_ifdef(CONFIG_SHELL_START_OBSCURED app PRIVATE src/login_cmd.c)
|