Skip to content

Commit

Permalink
Merge pull request #11501 from daschuer/gh11483
Browse files Browse the repository at this point in the history
Fix EQ and waveforms by enabling infinite math in fidlib
  • Loading branch information
Swiftb0y authored Apr 21, 2023
2 parents c2934d4 + 4ae7272 commit ea857e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1855,10 +1855,10 @@ if(MSVC)
target_compile_options(fidlib PRIVATE /W3)
elseif(MINGW)
target_compile_definitions(fidlib PRIVATE T_MINGW)
target_compile_options(fidlib PRIVATE -Wall -Wextra -Wfloat-conversion -Werror=return-type)
target_compile_options(fidlib PRIVATE -fno-finite-math-only -Wall -Wextra -Wfloat-conversion -Werror=return-type)
else()
target_compile_definitions(fidlib PRIVATE T_LINUX)
target_compile_options(fidlib PRIVATE -Wall -Wextra -Wfloat-conversion -Werror=return-type)
target_compile_options(fidlib PRIVATE -fno-finite-math-only -Wall -Wextra -Wfloat-conversion -Werror=return-type)
endif()
target_include_directories(mixxx-lib SYSTEM PUBLIC lib/fidlib)
target_link_libraries(mixxx-lib PRIVATE fidlib)
Expand Down

0 comments on commit ea857e5

Please sign in to comment.