From 02ac01a814a9f856ed1f9a65f6b7fe281cdb13f1 Mon Sep 17 00:00:00 2001 From: Josh Blum Date: Tue, 13 Nov 2012 18:12:37 -0800 Subject: fft: restore FFTW3F_THREADS support for fft.cc --- gr-fft/lib/CMakeLists.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/gr-fft/lib/CMakeLists.txt b/gr-fft/lib/CMakeLists.txt index 6ca20363b..c16e0d116 100644 --- a/gr-fft/lib/CMakeLists.txt +++ b/gr-fft/lib/CMakeLists.txt @@ -49,6 +49,11 @@ list(APPEND fft_libs ${FFTW3F_LIBRARIES} ) +if(FFTW3F_THREADS_LIBRARIES) + list(APPEND fft_libs ${FFTW3F_THREADS_LIBRARIES}) + add_definitions("-DFFTW3F_THREADS") +endif() + add_library(gnuradio-fft SHARED ${fft_sources}) target_link_libraries(gnuradio-fft ${fft_libs}) GR_LIBRARY_FOO(gnuradio-fft RUNTIME_COMPONENT "fft_runtime" DEVEL_COMPONENT "fft_devel") -- cgit