2
0

CMakeLists.txt 381 B

123456789
  1. cmake_minimum_required(VERSION 3.13.1)
  2. include($ENV{ZEPHYR_BASE}/cmake/app/boilerplate.cmake NO_POLICY_SCOPE)
  3. project(wolfssl_test)
  4. target_sources(app PRIVATE ${ZEPHYR_WOLFSSL_MODULE_DIR}/wolfcrypt/test/test.c)
  5. target_include_directories(app PRIVATE ${ZEPHYR_WOLFSSL_MODULE_DIR}/wolfcrypt/test)
  6. target_sources(app PRIVATE ${app_sources})
  7. add_definitions(-DWOLFSSL_USER_SETTINGS)