lasp/fftpack/CMakeLists.txt

8 lines
210 B
CMake
Raw Normal View History

# We borrow Numpy's implementation for doing the Fast Fourier Transform.
# This FFT code appears to be faster than KISSFFT.
2018-01-29 15:14:50 +00:00
add_library(fftpack
fftpack.c
)
# Ling fft to math
2018-01-29 15:14:50 +00:00
target_link_libraries(fftpack m)