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.
46 lines
843 B
CMake
46 lines
843 B
CMake
cmake_minimum_required (VERSION 3.6)
|
|
project (arm_svm_example VERSION 0.1)
|
|
|
|
|
|
# Needed to include the configBoot module
|
|
# Define the path to CMSIS-DSP (ROOT is defined on command line when using cmake)
|
|
set(ROOT ${CMAKE_CURRENT_SOURCE_DIR}/../../../../..)
|
|
set(DSP ${ROOT}/CMSIS/DSP)
|
|
|
|
# Add DSP folder to module path
|
|
list(APPEND CMAKE_MODULE_PATH ${DSP})
|
|
|
|
###################################
|
|
#
|
|
# LIBRARIES
|
|
#
|
|
###################################
|
|
|
|
###########
|
|
#
|
|
# CMSIS DSP
|
|
#
|
|
|
|
add_subdirectory(../../../Source bin_dsp)
|
|
|
|
|
|
###################################
|
|
#
|
|
# TEST APPLICATION
|
|
#
|
|
###################################
|
|
|
|
|
|
add_executable(arm_svm_example)
|
|
|
|
|
|
include(config)
|
|
configApp(arm_svm_example ${ROOT})
|
|
|
|
target_sources(arm_svm_example PRIVATE arm_svm_example_f32.c)
|
|
|
|
### Sources and libs
|
|
|
|
target_link_libraries(arm_svm_example PRIVATE CMSISDSP)
|
|
|