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/Source/FastMathFunctions/Config.cmake

48 lines
1.6 KiB
CMake

cmake_minimum_required (VERSION 3.14)
target_sources(CMSISDSP PRIVATE FastMathFunctions/arm_cos_f32.c)
target_sources(CMSISDSP PRIVATE FastMathFunctions/arm_cos_q15.c)
target_sources(CMSISDSP PRIVATE FastMathFunctions/arm_cos_q31.c)
target_sources(CMSISDSP PRIVATE FastMathFunctions/arm_sin_f32.c)
target_sources(CMSISDSP PRIVATE FastMathFunctions/arm_sin_q15.c)
target_sources(CMSISDSP PRIVATE FastMathFunctions/arm_sin_q31.c)
target_sources(CMSISDSP PRIVATE FastMathFunctions/arm_sqrt_q31.c)
target_sources(CMSISDSP PRIVATE FastMathFunctions/arm_sqrt_q15.c)
target_sources(CMSISDSP PRIVATE FastMathFunctions/arm_vlog_f32.c)
target_sources(CMSISDSP PRIVATE FastMathFunctions/arm_vlog_f64.c)
target_sources(CMSISDSP PRIVATE FastMathFunctions/arm_vexp_f32.c)
target_sources(CMSISDSP PRIVATE FastMathFunctions/arm_vexp_f64.c)
target_sources(CMSISDSP PRIVATE FastMathFunctions/arm_vlog_q31.c)
target_sources(CMSISDSP PRIVATE FastMathFunctions/arm_vlog_q15.c)
if ((NOT ARMAC5) AND (NOT DISABLEFLOAT16))
target_sources(CMSISDSP PRIVATE FastMathFunctions/arm_vlog_f16.c)
target_sources(CMSISDSP PRIVATE FastMathFunctions/arm_vexp_f16.c)
target_sources(CMSISDSP PRIVATE FastMathFunctions/arm_vinverse_f16.c)
target_sources(CMSISDSP PRIVATE FastMathFunctions/arm_atan2_f16.c)
endif()
target_sources(CMSISDSP PRIVATE FastMathFunctions/arm_divide_q15.c)
target_sources(CMSISDSP PRIVATE FastMathFunctions/arm_divide_q31.c)
target_sources(CMSISDSP PRIVATE FastMathFunctions/arm_atan2_f32.c)
target_sources(CMSISDSP PRIVATE FastMathFunctions/arm_atan2_q31.c)
target_sources(CMSISDSP PRIVATE FastMathFunctions/arm_atan2_q15.c)