Add a sample to demonstrate direct use of the PSA ITS API. The implementation of the API is provided either by the just-introduced secure storage subsystem or by TF-M. Signed-off-by: Tomi Fontanilles <tomi.fontanilles@nordicsemi.no>
8 lines
189 B
CMake
8 lines
189 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
cmake_minimum_required(VERSION 3.20.0)
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
|
|
|
project(psa_its)
|
|
|
|
target_sources(app PRIVATE src/main.c)
|