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.
42 lines
1015 B
CMake
42 lines
1015 B
CMake
cmake_minimum_required (VERSION 3.14)
|
|
|
|
project(CMSISDSPMatrix)
|
|
|
|
include(configLib)
|
|
include(configDsp)
|
|
|
|
file(GLOB SRCF64 "./*_f64.c")
|
|
file(GLOB SRCF32 "./*_f32.c")
|
|
file(GLOB SRCF16 "./*_f16.c")
|
|
file(GLOB SRCQ31 "./*_q31.c")
|
|
file(GLOB SRCQ15 "./*_q15.c")
|
|
file(GLOB SRCQ7 "./*_q7.c")
|
|
|
|
file(GLOB SRCU32 "./*_u32.c")
|
|
file(GLOB SRCU16 "./*_u16.c")
|
|
file(GLOB SRCU8 "./*_u8.c")
|
|
|
|
add_library(CMSISDSPMatrix STATIC ${SRCF64})
|
|
target_sources(CMSISDSPMatrix PRIVATE ${SRCF32})
|
|
|
|
if ((NOT ARMAC5) AND (NOT DISABLEFLOAT16))
|
|
target_sources(CMSISDSPMatrix PRIVATE ${SRCF16})
|
|
endif()
|
|
|
|
target_sources(CMSISDSPMatrix PRIVATE ${SRCQ31})
|
|
target_sources(CMSISDSPMatrix PRIVATE ${SRCQ15})
|
|
target_sources(CMSISDSPMatrix PRIVATE ${SRCQ7})
|
|
|
|
target_sources(CMSISDSPMatrix PRIVATE ${SRCU32})
|
|
target_sources(CMSISDSPMatrix PRIVATE ${SRCU16})
|
|
target_sources(CMSISDSPMatrix PRIVATE ${SRCU8})
|
|
|
|
configLib(CMSISDSPMatrix ${ROOT})
|
|
configDsp(CMSISDSPMatrix ${ROOT})
|
|
|
|
### Includes
|
|
target_include_directories(CMSISDSPMatrix PUBLIC "${DSP}/Include")
|
|
|
|
|
|
|