Kconfig that enables integrity check has been moved to test configurations that test it. Signed-off-by: Dominik Ermel <dominik.ermel@nordicsemi.no>
14 lines
329 B
CMake
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})
|