lasp/third_party/fftpack/CMakeLists.txt

10 lines
264 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
)
2022-07-20 12:58:48 +00:00
# Ling fft to math
2022-07-20 12:58:48 +00:00
target_link_libraries(fftpack PRIVATE m)
2022-07-25 20:29:42 +00:00
target_include_directories(fftpack PUBLIC .)