zephyr/subsys/logging/frontends/CMakeLists.txt
Krzysztof Chruściński d1bd45739a logging: frontends: stmesp: Move zephyr_custom_log.h to the unique path
Logging with STMESP frontend is using custom logging header feature.
Put that specific header file in a custom path which is added to the
build only if that logging frontend is used.

Signed-off-by: Krzysztof Chruściński <krzysztof.chruscinski@nordicsemi.no>
2024-12-10 20:37:22 +01:00

22 lines
369 B
CMake

# SPDX-License-Identifier: Apache-2.0
zephyr_sources_ifdef(
CONFIG_LOG_FRONTEND_DICT_UART
log_frontend_dict_uart.c
)
zephyr_sources_ifdef(
CONFIG_LOG_FRONTEND_STMESP
log_frontend_stmesp.c
)
zephyr_sources_ifdef(
CONFIG_LOG_FRONTEND_STMESP_DEMUX
log_frontend_stmesp_demux.c
)
zephyr_include_directories_ifdef(
CONFIG_LOG_FRONTEND_STMESP_FSC
stmesp
)