123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280 |
- cmake_minimum_required (VERSION 3.6)
- cmake_policy(SET CMP0077 NEW)
- project(CMSISDSP)
- # DSP Sources
- SET(DSP ${ROOT}/CMSIS/DSP)
- list(APPEND CMAKE_MODULE_PATH ${DSP}/Source)
- list(APPEND CMAKE_MODULE_PATH ${DSP})
- include(configLib)
- option(NEON "Neon acceleration" OFF)
- option(NEONEXPERIMENTAL "Neon experimental acceleration" OFF)
- option(LOOPUNROLL "Loop unrolling" ON)
- option(ROUNDING "Rounding" OFF)
- option(MATRIXCHECK "Matrix Checks" OFF)
- option(HELIUM "Helium acceleration (MVEF and MVEI supported)" OFF)
- option(MVEF "MVEF intrinsics supported" OFF)
- option(MVEI "MVEI intrinsics supported" OFF)
- # Select which parts of the CMSIS-DSP must be compiled.
- # There are some dependencies between the parts but they are not tracked
- # by this cmake. So, enabling some functions may require to enable some
- # other ones.
- option(BASICMATH "Basic Math Functions" ON)
- option(COMPLEXMATH "Complex Math Functions" ON)
- option(CONTROLLER "Controller Functions" ON)
- option(FASTMATH "Fast Math Functions" ON)
- option(FILTERING "Filtering Functions" ON)
- option(MATRIX "Matrix Functions" ON)
- option(STATISTICS "Statistics Functions" ON)
- option(SUPPORT "Support Functions" ON)
- option(TRANSFORM "Transform Functions" ON)
- option(SVM "Support Vector Machine Functions" ON)
- option(BAYES "Bayesian Estimators" ON)
- option(DISTANCE "Distance Functions" ON)
- # When OFF it is the default behavior : all tables are included.
- option(CONFIGTABLE "Configuration of table allowed" OFF)
- # When CONFIGTABLE is ON, select if all interpolation tables must be included
- option(ALLFAST "All interpolation tables included" OFF)
- # When CONFIGTABLE is ON, select if all FFT tables must be included
- option(ALLFFT "All fft tables included" OFF)
- # Features which require inclusion of a data table.
- # Since some tables may be big, the corresponding feature can be
- # disabled.
- # Those options are taken into account only when CONFIGTABLE is ON
- option(ARM_COS_F32 "cos f32" OFF)
- option(ARM_COS_Q31 "cos q31" OFF)
- option(ARM_COS_Q15 "cos q15" OFF)
- option(ARM_SIN_F32 "sin f32" OFF)
- option(ARM_SIN_Q31 "sin q31" OFF)
- option(ARM_SIN_Q15 "sin q15" OFF)
- option(ARM_SIN_COS_F32 "sin cos f32" OFF)
- option(ARM_SIN_COS_Q31 "sin cos q31" OFF)
- option(ARM_LMS_NORM_Q31 "lms norm q31" OFF)
- option(ARM_LMS_NORM_Q15 "lms norm q15" OFF)
- option(CFFT_F64_16 "cfft f64 16" OFF)
- option(CFFT_F64_32 "cfft f64 32" OFF)
- option(CFFT_F64_64 "cfft f64 64" OFF)
- option(CFFT_F64_128 "cfft f64 128" OFF)
- option(CFFT_F64_256 "cfft f64 256" OFF)
- option(CFFT_F64_512 "cfft f64 512" OFF)
- option(CFFT_F64_1024 "cfft f64 1024" OFF)
- option(CFFT_F64_2048 "cfft f64 2048" OFF)
- option(CFFT_F64_4096 "cfft f64 4096" OFF)
- option(CFFT_F32_16 "cfft f32 16" OFF)
- option(CFFT_F32_32 "cfft f32 32" OFF)
- option(CFFT_F32_64 "cfft f32 64" OFF)
- option(CFFT_F32_128 "cfft f32 128" OFF)
- option(CFFT_F32_256 "cfft f32 256" OFF)
- option(CFFT_F32_512 "cfft f32 512" OFF)
- option(CFFT_F32_1024 "cfft f32 1024" OFF)
- option(CFFT_F32_2048 "cfft f32 2048" OFF)
- option(CFFT_F32_4096 "cfft f32 4096" OFF)
- option(CFFT_Q31_16 "cfft q31 16" OFF)
- option(CFFT_Q31_32 "cfft q31 32" OFF)
- option(CFFT_Q31_64 "cfft q31 64" OFF)
- option(CFFT_Q31_128 "cfft q31 128" OFF)
- option(CFFT_Q31_256 "cfft q31 256" OFF)
- option(CFFT_Q31_512 "cfft q31 512" OFF)
- option(CFFT_Q31_1024 "cfft q31 1024" OFF)
- option(CFFT_Q31_2048 "cfft q31 2048" OFF)
- option(CFFT_Q31_4096 "cfft q31 4096" OFF)
- option(CFFT_Q15_16 "cfft q15 16" OFF)
- option(CFFT_Q15_32 "cfft q15 32" OFF)
- option(CFFT_Q15_64 "cfft q15 64" OFF)
- option(CFFT_Q15_128 "cfft q15 128" OFF)
- option(CFFT_Q15_256 "cfft q15 256" OFF)
- option(CFFT_Q15_512 "cfft q15 512" OFF)
- option(CFFT_Q15_1024 "cfft q15 1024" OFF)
- option(CFFT_Q15_2048 "cfft q15 2048" OFF)
- option(CFFT_Q15_4096 "cfft q15 4096" OFF)
- option(RFFT_FAST_F32_32 "rfft fast f32 32" OFF)
- option(RFFT_FAST_F32_64 "rfft fast f32 64" OFF)
- option(RFFT_FAST_F32_128 "rfft fast f32 128" OFF)
- option(RFFT_FAST_F32_256 "rfft fast f32 256" OFF)
- option(RFFT_FAST_F32_512 "rfft fast f32 512" OFF)
- option(RFFT_FAST_F32_1024 "rfft fast f32 1024" OFF)
- option(RFFT_FAST_F32_2048 "rfft fast f32 2048" OFF)
- option(RFFT_FAST_F32_4096 "rfft fast f32 4096" OFF)
- option(RFFT_F32_128 "rfft f32 128" OFF)
- option(RFFT_F32_512 "rfft f32 512" OFF)
- option(RFFT_F32_2048 "rfft f32 2048" OFF)
- option(RFFT_F32_8192 "rfft f32 8192" OFF)
- option(RFFT_FAST_F64_32 "rfft fast f64 32" OFF)
- option(RFFT_FAST_F64_64 "rfft fast f64 64" OFF)
- option(RFFT_FAST_F64_128 "rfft fast f64 128" OFF)
- option(RFFT_FAST_F64_256 "rfft fast f64 256" OFF)
- option(RFFT_FAST_F64_512 "rfft fast f64 512" OFF)
- option(RFFT_FAST_F64_1024 "rfft fast f64 1024" OFF)
- option(RFFT_FAST_F64_2048 "rfft fast f64 2048" OFF)
- option(RFFT_FAST_F64_4096 "rfft fast f64 4096" OFF)
- option(RFFT_F64_128 "rfft f64 128" OFF)
- option(RFFT_F64_512 "rfft f64 512" OFF)
- option(RFFT_F64_2048 "rfft f64 2048" OFF)
- option(RFFT_F64_8192 "rfft f64 8192" OFF)
- option(RFFT_Q31_32 "rfft q31 32" OFF)
- option(RFFT_Q31_64 "rfft q31 64" OFF)
- option(RFFT_Q31_128 "rfft q31 128" OFF)
- option(RFFT_Q31_256 "rfft q31 256" OFF)
- option(RFFT_Q31_512 "rfft q31 512" OFF)
- option(RFFT_Q31_1024 "rfft q31 1024" OFF)
- option(RFFT_Q31_2048 "rfft q31 2048" OFF)
- option(RFFT_Q31_4096 "rfft q31 4096" OFF)
- option(RFFT_Q31_8192 "rfft q31 8192" OFF)
- option(RFFT_Q15_32 "rfft q15 32" OFF)
- option(RFFT_Q15_64 "rfft q15 64" OFF)
- option(RFFT_Q15_128 "rfft q15 128" OFF)
- option(RFFT_Q15_256 "rfft q15 256" OFF)
- option(RFFT_Q15_512 "rfft q15 512" OFF)
- option(RFFT_Q15_1024 "rfft q15 1024" OFF)
- option(RFFT_Q15_2048 "rfft q15 2048" OFF)
- option(RFFT_Q15_4096 "rfft q15 4096" OFF)
- option(RFFT_Q15_8192 "rfft q15 8192" OFF)
- option(DCT4_F32_128 "dct4 f32 128" OFF)
- option(DCT4_F32_512 "dct4 f32 512" OFF)
- option(DCT4_F32_2048 "dct4 f32 2048" OFF)
- option(DCT4_F32_8192 "dct4 f32 8192" OFF)
- option(DCT4_Q31_128 "dct4 q31 128" OFF)
- option(DCT4_Q31_512 "dct4 q31 512" OFF)
- option(DCT4_Q31_2048 "dct4 q31 2048" OFF)
- option(DCT4_Q31_8192 "dct4 q31 8192" OFF)
- option(DCT4_Q15_128 "dct4 q15 128" OFF)
- option(DCT4_Q15_512 "dct4 q15 512" OFF)
- option(DCT4_Q15_2048 "dct4 q15 2048" OFF)
- option(DCT4_Q15_8192 "dct4 q15 8192" OFF)
- ###########################
- #
- # CMSIS DSP
- #
- ###########################
- add_library(CMSISDSP INTERFACE)
- if (BASICMATH)
- add_subdirectory(BasicMathFunctions)
- target_link_libraries(CMSISDSP INTERFACE CMSISDSPBasicMath)
- endif()
- if (COMPLEXMATH)
- add_subdirectory(ComplexMathFunctions)
- target_link_libraries(CMSISDSP INTERFACE CMSISDSPComplexMath)
- endif()
- if (CONTROLLER)
- add_subdirectory(ControllerFunctions)
- # Fast tables inclusion is allowed
- if (CONFIGTABLE)
- target_compile_definitions(CMSISDSPController PUBLIC ARM_FAST_ALLOW_TABLES)
- endif()
- target_link_libraries(CMSISDSP INTERFACE CMSISDSPController)
- endif()
- if (FASTMATH)
- add_subdirectory(FastMathFunctions)
- # Fast tables inclusion is allowed
- if (CONFIGTABLE)
- target_compile_definitions(CMSISDSPFastMath PUBLIC ARM_FAST_ALLOW_TABLES)
- endif()
- target_link_libraries(CMSISDSP INTERFACE CMSISDSPFastMath)
- endif()
- if (FILTERING)
- add_subdirectory(FilteringFunctions)
- # Fast tables inclusion is allowed
- if (CONFIGTABLE)
- target_compile_definitions(CMSISDSPFiltering PUBLIC ARM_FAST_ALLOW_TABLES)
- endif()
- target_link_libraries(CMSISDSP INTERFACE CMSISDSPFiltering)
- endif()
- if (MATRIX)
- add_subdirectory(MatrixFunctions)
- target_link_libraries(CMSISDSP INTERFACE CMSISDSPMatrix)
- endif()
- if (STATISTICS)
- add_subdirectory(StatisticsFunctions)
- target_link_libraries(CMSISDSP INTERFACE CMSISDSPStatistics)
- endif()
- if (SUPPORT)
- add_subdirectory(SupportFunctions)
- target_link_libraries(CMSISDSP INTERFACE CMSISDSPSupport)
- endif()
- if (TRANSFORM)
- add_subdirectory(TransformFunctions)
- # FFT tables inclusion is allowed
- if (CONFIGTABLE)
- target_compile_definitions(CMSISDSPTransform PUBLIC ARM_FFT_ALLOW_TABLES)
- endif()
- target_link_libraries(CMSISDSP INTERFACE CMSISDSPTransform)
- endif()
- if (FILTERING OR CONTROLLER OR FASTMATH OR TRANSFORM OR SVM OR DISTANCE)
- add_subdirectory(CommonTables)
- if (TRANSFORM)
- # FFT tables inclusion is allowed
- if (CONFIGTABLE)
- target_compile_definitions(CMSISDSPCommon PUBLIC ARM_FFT_ALLOW_TABLES)
- endif()
- endif()
- if (FILTERING OR CONTROLLER OR FASTMATH)
- # Select which tables to include
- if (CONFIGTABLE)
- target_compile_definitions(CMSISDSPCommon PUBLIC ARM_FAST_ALLOW_TABLES)
- endif()
- endif()
- target_link_libraries(CMSISDSP INTERFACE CMSISDSPCommon)
- # Common project is adding ComputeLibrary tables used by SVM and Distance
- # when NEon is ON.
- endif()
- if (SVM)
- add_subdirectory(SVMFunctions)
- target_link_libraries(CMSISDSP INTERFACE CMSISDSPSVM)
- endif()
- if (BAYES)
- add_subdirectory(BayesFunctions)
- target_link_libraries(CMSISDSP INTERFACE CMSISDSPBayes)
- endif()
- if (DISTANCE)
- add_subdirectory(DistanceFunctions)
- target_link_libraries(CMSISDSP INTERFACE CMSISDSPDistance)
- endif()
- ### Includes
- target_include_directories(CMSISDSP INTERFACE "${DSP}/Include")
|