From: Mark Abraham Date: Wed, 17 Jun 2015 21:16:04 +0000 (+0200) Subject: Fix typo in GMX_BUILD_OWN_FFTW message X-Git-Url: http://biod.pnpi.spb.ru/gitweb/?a=commitdiff_plain;h=a80a6ab1ade788670c280e0b3df8a34e2feb8d47;p=alexxy%2Fgromacs.git Fix typo in GMX_BUILD_OWN_FFTW message Change-Id: Ieec8b7d1bccd7e9654a14091e42f5047d441db31 --- diff --git a/cmake/gmxManageFFTLibraries.cmake b/cmake/gmxManageFFTLibraries.cmake index 6874f1a2b9..fdd63bca94 100644 --- a/cmake/gmxManageFFTLibraries.cmake +++ b/cmake/gmxManageFFTLibraries.cmake @@ -78,7 +78,7 @@ if(${GMX_FFT_LIBRARY} STREQUAL "FFTW3") find_package(FFTW COMPONENTS ${LOWERFFTW}) if(NOT ${FFTW}_FOUND) - MESSAGE(FATAL_ERROR "Cannot find FFTW 3 (with correct precision - libfftw3f for mixed-precision GROMACS or libfftw3 for double-precision GROMACS). Either choose the right precision, choose another FFT(W) library (-DGMX_FFT_LIBRARY), enable the advanced option to let GROMACS build FFTW 3 for you (-GMX_BUILD_OWN_FFTW=ON), or use the really slow GROMACS built-in fftpack library (-DGMX_FFT_LIBRARY=fftpack).") + MESSAGE(FATAL_ERROR "Cannot find FFTW 3 (with correct precision - libfftw3f for mixed-precision GROMACS or libfftw3 for double-precision GROMACS). Either choose the right precision, choose another FFT(W) library (-DGMX_FFT_LIBRARY), enable the advanced option to let GROMACS build FFTW 3 for you (-DGMX_BUILD_OWN_FFTW=ON), or use the really slow GROMACS built-in fftpack library (-DGMX_FFT_LIBRARY=fftpack).") endif() set(PKG_FFT "${${FFTW}_PKG}")