zephyr/tests/cmake/sysbuild_snippets/CMakeLists.txt
Jamie McCrae 06fd7389bd tests: cmake: Add sysbuild snippets test
Adds a new test that ensures sysbuild snippets work and are
applied correctly

Signed-off-by: Jamie McCrae <jamie.mccrae@nordicsemi.no>
2024-12-27 07:18:13 +01:00

9 lines
231 B
CMake

# SPDX-License-Identifier: Apache-2.0
cmake_minimum_required(VERSION 3.20.0)
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
project(test_snippets)
FILE(GLOB app_sources src/*.c)
target_sources(app PRIVATE ${app_sources})