You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
CMSIS-DSP/ComputeGraph/examples/simpledsp/CMakeLists.txt

14 lines
389 B
CMake

cmake_minimum_required (VERSION 3.14)
include(CMakePrintHelpers)
project(simpledsp)
add_executable(simpledsp main.cpp)
sdf(simpledsp create.py simpledsp)
add_sdf_dir(simpledsp)
target_include_directories(simpledsp PRIVATE ${CMAKE_CURRENT_SOURCE_DIR})
target_include_directories(simpledsp PRIVATE ${CMAKE_CURRENT_SOURCE_DIR}/generated)
target_link_libraries(simpledsp PRIVATE CMSISDSP)