19 lines
540 B
CMake
Executable File
19 lines
540 B
CMake
Executable File
# - Find FFTW3
|
|
# Find the native FFTW3 includes and library
|
|
#
|
|
# FFTW3_INCLUDE_DIRS - where to find fftw3.h
|
|
# FFTW3_LIBRARIES - List of libraries when using FFTW3.
|
|
# FFTW3_FOUND - True if FFTW3 found.
|
|
|
|
if (FFTW3_INCLUDE_DIRS)
|
|
set(FFTW3_FIND_QUIETLY TRUE)
|
|
endif()
|
|
|
|
find_path(FFTW3_INCLUDE_DIRS fftw3.h)
|
|
find_library(FFTW3_LIBRARIES NAMES fftw3)
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(FFTW3 DEFAULT_MSG FFTW3_LIBRARIES FFTW3_INCLUDE_DIRS)
|
|
|
|
mark_as_advanced(FFTW3_LIBRARIES FFTW3_INCLUDE_DIRS)
|