28 lines
916 B
CMake
28 lines
916 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
cmake_minimum_required(VERSION 3.13.1)
|
|
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
|
|
|
project(tfm_psa_level_1)
|
|
|
|
# Source files in this sample
|
|
target_sources(app PRIVATE src/main.c)
|
|
target_sources(app PRIVATE src/psa_attestation.c)
|
|
target_sources(app PRIVATE src/psa_crypto.c)
|
|
target_sources(app PRIVATE src/shell.c)
|
|
target_sources(app PRIVATE src/util_app_cfg.c)
|
|
target_sources(app PRIVATE src/util_app_log.c)
|
|
target_sources(app PRIVATE src/util_sformat.c)
|
|
|
|
target_include_directories(app PRIVATE
|
|
${ZEPHYR_TRUSTED_FIRMWARE_M_MODULE_DIR}/trusted-firmware-m/interface/include
|
|
)
|
|
|
|
# In TF-M, default value of CRYPTO_ENGINE_BUF_SIZE is 0x2080. It causes
|
|
# insufficient memory failure while verifying signature. Increase it to 0x2400.
|
|
set_property(TARGET zephyr_property_target
|
|
APPEND PROPERTY TFM_CMAKE_OPTIONS
|
|
-DCRYPTO_ENGINE_BUF_SIZE=0x2400
|
|
)
|