Add files from breeze10
This commit is contained in:
parent
4b084789fd
commit
8fb2644d49
45 changed files with 6935 additions and 0 deletions
20
cmake/Modules/FindFFTW.cmake
Normal file
20
cmake/Modules/FindFFTW.cmake
Normal file
|
@ -0,0 +1,20 @@
|
|||
# Find the FFTW library
|
||||
#
|
||||
# Usage:
|
||||
# find_package(FFTW [REQUIRED])
|
||||
#
|
||||
# It sets the following variables:
|
||||
# FFTW_FOUND
|
||||
# FFTW_INCLUDES
|
||||
# FFTW_LIBRARIES
|
||||
|
||||
|
||||
find_path(FFTW_INCLUDES fftw3.h)
|
||||
|
||||
find_library(FFTW_LIBRARIES NAMES fftw3)
|
||||
|
||||
include(FindPackageHandleStandardArgs)
|
||||
find_package_handle_standard_args(FFTW DEFAULT_MSG
|
||||
FFTW_INCLUDES FFTW_LIBRARIES)
|
||||
|
||||
mark_as_advanced(FFTW_INCLUDES FFTW_LIBRARIES)
|
Loading…
Add table
Add a link
Reference in a new issue