We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9232697 commit 95b29acCopy full SHA for 95b29ac
cmake/FindFFTW.cmake
@@ -10,9 +10,13 @@ if(FFTW_INCLUDE_PATH)
10
set(FFTW_FIND_QUIETLY TRUE)
11
endif(FFTW_INCLUDE_PATH)
12
13
-find_path(FFTW_INCLUDE_PATH fftw3.h)
+find_path(FFTW_INCLUDE_PATH fftw3.h
14
+ HINTS $ENV{FFTW3_INCLUDE}
15
+)
16
-find_library(FFTW_LIBRARIES NAMES fftw3)
17
+find_library(FFTW_LIBRARIES NAMES fftw3
18
+ HINTS $ENV{FFTW3_LIB}
19
20
21
# handle the QUIETLY and REQUIRED arguments and set FFTW_FOUND to TRUE if
22
# all listed variables are TRUE
0 commit comments