1# Copyright 2021-2022 Arm Limited and/or its affiliates <open-source-office@arm.com> 2# 3# SPDX-License-Identifier: Apache-2.0 4 5cmake_minimum_required(VERSION 3.20.0) 6 7find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE}) 8 9project(tflm_ethosu_app) 10 11target_include_directories(app PRIVATE src/models/keyword_spotting_cnn_small_int8) 12 13target_sources(app PRIVATE src/main.cpp src/inference_process.cpp) 14 15zephyr_linker_sources(SECTIONS linker.ld) 16