636a96ec50678797f9ecdb79ad42fc2cc2bb5d11
[alexxy/gromacs.git] / cmake / FindFFTW3.cmake
1 # - Find FFTW3
2 # Find the native FFTW3 includes and library, double precision
3 #
4 #  FFTW3_INCLUDE_DIR    - where to find fftw3.h
5 #  FFTW3_LIBRARIES   - List of libraries when using FFTW.
6 #  FFTW3_FOUND       - True if FFTW found.
7
8 if (FFTW3_INCLUDE_DIR AND FFTW3_LIBRARIES)
9   # Already in cache, be silent
10   set (FFTW3_FIND_QUIETLY TRUE)
11 endif (FFTW3_INCLUDE_DIR AND FFTW3_LIBRARIES)
12
13 find_path (FFTW3_INCLUDE_DIR fftw3.h)
14
15 find_library (FFTW3_LIBRARIES NAMES fftw3)
16
17 # handle the QUIETLY and REQUIRED arguments and set FFTW_FOUND to TRUE if
18 # all listed variables are TRUE
19 include (FindPackageHandleStandardArgs)
20 find_package_handle_standard_args (FFTW3 DEFAULT_MSG FFTW3_LIBRARIES FFTW3_INCLUDE_DIR)
21
22 mark_as_advanced (FFTW3_LIBRARIES FFTW3_INCLUDE_DIR)
23
24