lasp/third_party/fftpack/CMakeLists.txt

10 lines
264 B
CMake

# We borrow Numpy's implementation for doing the Fast Fourier Transform.
# This FFT code appears to be faster than KISSFFT.
add_library(fftpack
fftpack.c
)
# Ling fft to math
target_link_libraries(fftpack PRIVATE m)
target_include_directories(fftpack PUBLIC .)