2018-12-29 12:57:32 +00:00
|
|
|
# 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
|
2018-12-29 12:57:32 +00:00
|
|
|
)
|
|
|
|
# Ling fft to math
|
2018-01-29 15:14:50 +00:00
|
|
|
target_link_libraries(fftpack m)
|