2
0
mirror of https://github.com/rehlds/revoice.git synced 2025-03-03 17:15:25 +03:00

Enable floating-point optimizations for silk non-Debug

This commit is contained in:
the_hunter 2025-02-25 00:53:52 +02:00
parent c5fafac2f4
commit 659e3b71a7

View File

@ -215,4 +215,6 @@ endif()
target_compile_options("${TARGET_NAME}"
PRIVATE
$<IF:$<C_COMPILER_ID:MSVC>,/W0,-w>
$<$<AND:$<C_COMPILER_ID:MSVC>,$<NOT:$<CONFIG:Debug>>>:/fp:fast>
$<$<AND:$<NOT:$<C_COMPILER_ID:MSVC>>,$<NOT:$<CONFIG:Debug>>>:-ffast-math>
)