blob: a62209fc9fe220253f5a915d53977a7b8a857d51 [file] [log] [blame]
# SPDX-License-Identifier: Apache-2.0
cmake_minimum_required(VERSION 3.13.1)
if(BOARD MATCHES "qemu_.*")
list(APPEND QEMU_EXTRA_FLAGS -serial file:channel0_0)
endif()
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
project(tracing_tests)
target_sources(app PRIVATE src/main.c)
target_sources_ifdef(
CONFIG_TRACING_TEST
app PRIVATE
src/tracing_string_format_test.c
)