summaryrefslogtreecommitdiff
path: root/gr-fft/python
diff options
context:
space:
mode:
authorJohnathan Corgan <johnathan@corganlabs.com>2012-11-14 10:07:45 -0800
committerJohnathan Corgan <johnathan@corganlabs.com>2012-11-14 10:07:45 -0800
commit8e01e6f004fe9039cb833250231192438c982c0a (patch)
tree0e16a1983a52ee4b06d4e17d1fcf617d954cce9d /gr-fft/python
parent01abe9f225dd73e6feae151e42c285dd3c880d54 (diff)
parent315237fd3935f31a0920613af3947189520f796a (diff)
Merge branch 'master' into next
Conflicts: gr-atsc/src/lib/CMakeLists.txt gr-digital/python/CMakeLists.txt gr-trellis/src/python/CMakeLists.txt gr-vocoder/python/CMakeLists.txt gr-wavelet/python/CMakeLists.txt
Diffstat (limited to 'gr-fft/python')
-rw-r--r--gr-fft/python/CMakeLists.txt14
1 files changed, 7 insertions, 7 deletions
diff --git a/gr-fft/python/CMakeLists.txt b/gr-fft/python/CMakeLists.txt
index c994b1a6ae..c259035c33 100644
--- a/gr-fft/python/CMakeLists.txt
+++ b/gr-fft/python/CMakeLists.txt
@@ -32,17 +32,17 @@ GR_PYTHON_INSTALL(
# Handle the unit tests
########################################################################
if(ENABLE_TESTING)
+
+list(APPEND GR_TEST_PYTHON_DIRS
+ ${CMAKE_BINARY_DIR}/gr-fft/python
+ ${CMAKE_BINARY_DIR}/gr-fft/swig
+)
+list(APPEND GR_TEST_TARGET_DEPS gnuradio-fft)
+
include(GrTest)
file(GLOB py_qa_test_files "qa_*.py")
foreach(py_qa_test_file ${py_qa_test_files})
get_filename_component(py_qa_test_name ${py_qa_test_file} NAME_WE)
- set(GR_TEST_PYTHON_DIRS
- ${CMAKE_BINARY_DIR}/gnuradio-core/src/python
- ${CMAKE_BINARY_DIR}/gnuradio-core/src/lib/swig
- ${CMAKE_BINARY_DIR}/gr-fft/python
- ${CMAKE_BINARY_DIR}/gr-fft/swig
- )
- set(GR_TEST_TARGET_DEPS gruel gnuradio-core gnuradio-fft)
GR_ADD_TEST(${py_qa_test_name} ${PYTHON_EXECUTABLE} ${PYTHON_DASH_B} ${py_qa_test_file})
endforeach(py_qa_test_file)
endif(ENABLE_TESTING)