10 lines
364 B
CMake
10 lines
364 B
CMake
cmake_minimum_required(VERSION 3.13.1)
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
|
project(wolfssl_test)
|
|
|
|
target_sources(app PRIVATE ${ZEPHYR_WOLFSSL_MODULE_DIR}/wolfcrypt/test/test.c)
|
|
target_include_directories(app PRIVATE ${ZEPHYR_WOLFSSL_MODULE_DIR}/wolfcrypt/test)
|
|
target_sources(app PRIVATE ${app_sources})
|
|
add_definitions(-DWOLFSSL_USER_SETTINGS)
|
|
|