Add files from breeze10

This commit is contained in:
Codic Kode 2020-04-25 14:20:33 -07:00
parent 4b084789fd
commit 8fb2644d49
45 changed files with 6935 additions and 0 deletions

View 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)