zephyr/tests/subsys/storage/flash_map/CMakeLists.txt
Dominik Ermel e04f6d0e84 tests: flash_map: Fix tests configurations
Kconfig that enables integrity check has been moved to
test configurations that test it.

Signed-off-by: Dominik Ermel <dominik.ermel@nordicsemi.no>
2024-11-26 14:44:54 +00:00

14 lines
329 B
CMake

# SPDX-License-Identifier: Apache-2.0
cmake_minimum_required(VERSION 3.20.0)
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
project(flash_map)
if(NOT CONFIG_FLASH_AREA_CHECK_INTEGRITY)
FILE(GLOB app_sources src/main.c)
else()
FILE(GLOB app_sources src/main_sha.c)
endif()
target_sources(app PRIVATE ${app_sources})