Add a simple test to showcase how RNG can be configured on different platforms in order to allow Mbed TLS's PSA crypto implementation to work properly. Signed-off-by: Valerio Setti <vsetti@baylibre.com>
9 lines
236 B
CMake
9 lines
236 B
CMake
# Copyright (c) 2024 Nordic Semiconductor ASA
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
cmake_minimum_required(VERSION 3.20.0)
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
|
project(mbedtls)
|
|
|
|
target_sources(app PRIVATE src/main.c)
|