zephyr/tests/kernel/cache/CMakeLists.txt
Carlo Caione b504d388ea tests: cache: Add cache test
This is useful to prove that the implementation of the API is done
correctly.

Signed-off-by: Carlo Caione <ccaione@baylibre.com>
2022-12-01 13:40:56 -05:00

9 lines
226 B
CMake

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