File size: 458 Bytes
25ade36 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | cmake_minimum_required(VERSION 3.13.1)
if(NOT TARGET app)
message(FATAL_ERROR "Please create a target named 'app' (ex: add_executable(app)) before adding this file")
endif()
include(edge-impulse-sdk/cmake/utils.cmake)
add_subdirectory(edge-impulse-sdk/cmake/zephyr)
RECURSIVE_FIND_FILE_APPEND(MODEL_SOURCE "tflite-model" "*.cpp")
target_include_directories(app PRIVATE .)
# add all sources to the project
target_sources(app PRIVATE ${MODEL_SOURCE})
|