CMSIS-DSP: Added a ARM_MATH_FLOAT16 compilation option.
It is automatically enabled when MVE support is enabled.
diff --git a/CMSIS/DSP/Source/configDsp.cmake b/CMSIS/DSP/Source/configDsp.cmake
index b472be0..868132f 100644
--- a/CMSIS/DSP/Source/configDsp.cmake
+++ b/CMSIS/DSP/Source/configDsp.cmake
@@ -26,6 +26,10 @@
     target_include_directories(${project} PRIVATE "${root}/CMSIS/DSP/ComputeLibrary/Include")
 endif()
 
+if (FLOAT16)
+    target_compile_definitions(${project} PRIVATE ARM_MATH_FLOAT16) 
+endif()
+
 
 
 endfunction()
\ No newline at end of file