blob: 0b269426626fec69a733ad81019e0dc87fc8e69c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
cmake_minimum_required (VERSION 3.14)
project (arm_matrix_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_matrix_example)
include(config)
configApp(arm_matrix_example ${ROOT})
target_sources(arm_matrix_example PRIVATE math_helper.c arm_matrix_example_f32.c)
### Sources and libs
target_link_libraries(arm_matrix_example PRIVATE CMSISDSP)
|