zephyr/subsys/debug/CMakeLists.txt
Krzysztof Chruściński 530b8ccbed debug: coresight: Add coresight_trace_deformatter
Add module which decodes data encoded using Coresight Trace
Formatter.

Signed-off-by: Krzysztof Chruściński <krzysztof.chruscinski@nordicsemi.no>
2024-08-12 19:23:19 -04:00

41 lines
562 B
CMake

# SPDX-License-Identifier: Apache-2.0
zephyr_sources_ifdef(
CONFIG_DEBUG_THREAD_INFO
thread_info.c
)
zephyr_sources_ifdef(
CONFIG_ASAN
asan_hacks.c
)
zephyr_sources_ifdef(
CONFIG_THREAD_ANALYZER
thread_analyzer.c
)
add_subdirectory_ifdef(
CONFIG_DEBUG_COREDUMP
coredump
)
add_subdirectory_ifdef(
CONFIG_GDBSTUB
gdbstub
)
zephyr_sources_ifdef(
CONFIG_MIPI_STP_DECODER
mipi_stp_decoder.c
)
add_subdirectory_ifdef(
CONFIG_SYMTAB
symtab
)
zephyr_sources_ifdef(
CONFIG_CS_TRACE_DEFMT
coresight/cs_trace_defmt.c
)