Config.cmake 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. cmake_minimum_required (VERSION 3.14)
  2. target_sources(CMSISDSP PRIVATE FastMathFunctions/arm_cos_f32.c)
  3. target_sources(CMSISDSP PRIVATE FastMathFunctions/arm_cos_q15.c)
  4. target_sources(CMSISDSP PRIVATE FastMathFunctions/arm_cos_q31.c)
  5. target_sources(CMSISDSP PRIVATE FastMathFunctions/arm_sin_f32.c)
  6. target_sources(CMSISDSP PRIVATE FastMathFunctions/arm_sin_q15.c)
  7. target_sources(CMSISDSP PRIVATE FastMathFunctions/arm_sin_q31.c)
  8. target_sources(CMSISDSP PRIVATE FastMathFunctions/arm_sqrt_q31.c)
  9. target_sources(CMSISDSP PRIVATE FastMathFunctions/arm_sqrt_q15.c)
  10. target_sources(CMSISDSP PRIVATE FastMathFunctions/arm_vlog_f32.c)
  11. target_sources(CMSISDSP PRIVATE FastMathFunctions/arm_vlog_f64.c)
  12. target_sources(CMSISDSP PRIVATE FastMathFunctions/arm_vexp_f32.c)
  13. target_sources(CMSISDSP PRIVATE FastMathFunctions/arm_vexp_f64.c)
  14. target_sources(CMSISDSP PRIVATE FastMathFunctions/arm_vlog_q31.c)
  15. target_sources(CMSISDSP PRIVATE FastMathFunctions/arm_vlog_q15.c)
  16. if ((NOT ARMAC5) AND (NOT DISABLEFLOAT16))
  17. target_sources(CMSISDSP PRIVATE FastMathFunctions/arm_vlog_f16.c)
  18. target_sources(CMSISDSP PRIVATE FastMathFunctions/arm_vexp_f16.c)
  19. target_sources(CMSISDSP PRIVATE FastMathFunctions/arm_vinverse_f16.c)
  20. target_sources(CMSISDSP PRIVATE FastMathFunctions/arm_atan2_f16.c)
  21. endif()
  22. target_sources(CMSISDSP PRIVATE FastMathFunctions/arm_divide_q15.c)
  23. target_sources(CMSISDSP PRIVATE FastMathFunctions/arm_divide_q31.c)
  24. target_sources(CMSISDSP PRIVATE FastMathFunctions/arm_atan2_f32.c)
  25. target_sources(CMSISDSP PRIVATE FastMathFunctions/arm_atan2_q31.c)
  26. target_sources(CMSISDSP PRIVATE FastMathFunctions/arm_atan2_q15.c)