Import a selection of tests from the CMSIS-NN unit testing suite to validate that the integration into Zephyr is working correctly. Complete functional testing is left to the complete set of unit-tests in the externally maintained code. Signed-off-by: Jordan Yates <jordan.yates@data61.csiro.au>
10 lines
193 B
CMake
10 lines
193 B
CMake
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
cmake_minimum_required(VERSION 3.20.0)
|
|
find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})
|
|
project(cmsis_nn)
|
|
|
|
target_sources(app PRIVATE
|
|
src/main.c
|
|
)
|