zephyr/tests/drivers/coredump/coredump_api/CMakeLists.txt
Mark Holden f32f3aead3 coredump: drivers: Add coredump device test
A test is added that uses the new device and verifies that all
desired memory is included in the core dump when a crash occurs.

Signed-off-by: Mark Holden <mholden@fb.com>
2022-06-05 14:28:34 +02:00

11 lines
283 B
CMake

# Copyright Meta Platforms, Inc. and its affiliates.
# SPDX-License-Identifier: Apache-2.0
cmake_minimum_required(VERSION 3.20.0)
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
project(coredump_api)
FILE(GLOB app_sources src/*.c)
target_sources(app PRIVATE ${app_sources})