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

23 lines
1.0 KiB
CMake

cmake_minimum_required (VERSION 3.14)
target_sources(CMSISDSP PRIVATE InterpolationFunctions/arm_bilinear_interp_f32.c)
target_sources(CMSISDSP PRIVATE InterpolationFunctions/arm_bilinear_interp_q15.c)
target_sources(CMSISDSP PRIVATE InterpolationFunctions/arm_bilinear_interp_q31.c)
target_sources(CMSISDSP PRIVATE InterpolationFunctions/arm_bilinear_interp_q7.c)
target_sources(CMSISDSP PRIVATE InterpolationFunctions/arm_linear_interp_f32.c)
target_sources(CMSISDSP PRIVATE InterpolationFunctions/arm_linear_interp_q15.c)
target_sources(CMSISDSP PRIVATE InterpolationFunctions/arm_linear_interp_q31.c)
target_sources(CMSISDSP PRIVATE InterpolationFunctions/arm_linear_interp_q7.c)
target_sources(CMSISDSP PRIVATE InterpolationFunctions/arm_spline_interp_f32.c)
target_sources(CMSISDSP PRIVATE InterpolationFunctions/arm_spline_interp_init_f32.c)
if ((NOT ARMAC5) AND (NOT DISABLEFLOAT16))
target_sources(CMSISDSP PRIVATE InterpolationFunctions/arm_bilinear_interp_f16.c)
target_sources(CMSISDSP PRIVATE InterpolationFunctions/arm_linear_interp_f16.c)
endif()