Merge pull request #971 from ffontaine/master

cmake/modules/FindFFTW.cmake: fix build without fftw3
This commit is contained in:
Michael Ossmann
2021-10-20 10:45:26 -06:00
committed by GitHub

View File

@ -16,7 +16,7 @@ IF (WIN32)
include_directories(${FFTW_INCLUDES})
find_library (FFTW_LIBRARIES NAMES ${FFTW_LIBRARIES})
ELSE(WIN32)
find_library (FFTW_LIBRARIES NAMES fftw3)
find_library (FFTW_LIBRARIES NAMES fftw3f)
ENDIF(WIN32)