lasp/third_party/CMakeLists.txt

11 lines
302 B
CMake
Raw Normal View History

2022-07-20 12:58:48 +00:00
# third_party/CMakeLists.txt
if(LASP_FFT_BACKEND STREQUAL "FFTW")
find_library(FFTW_LIBRARY NAMES fftw3 fftw)
set(FFT_LIBRARIES "${FFTW_LIBRARY}")
elseif(LASP_FFT_BACKEND STREQUAL "FFTPack")
include_directories(fftpack)
set(FFT_LIBRARIES fftpack)
add_subdirectory(fftpack)
endif()