1# Copyright (c) 2024 Meta Platforms
2# SPDX-License-Identifier: Apache-2.0
3
4zephyr_sources(
5  # Main command
6  kernel_shell.c
7  # Subcommand starts here
8  cycles.c
9  sleep.c
10  uptime.c
11  version.c
12)
13
14# Conditional subcommands
15zephyr_sources_ifdef(CONFIG_SYS_HEAP_RUNTIME_STATS heap.c)
16
17zephyr_sources_ifdef(CONFIG_LOG_RUNTIME_FILTERING log-level.c)
18
19zephyr_sources_ifdef(CONFIG_REBOOT reboot.c)
20
21add_subdirectory_ifdef(CONFIG_KERNEL_THREAD_SHELL thread)
22