diff options
author | Josh Blum | 2012-11-13 17:04:16 -0800 |
---|---|---|
committer | Johnathan Corgan | 2012-11-14 09:21:33 -0800 |
commit | 37f752257d7fc336de1fe85a5a83134e66441e6e (patch) | |
tree | ce160eb539c6ad81e274dfc9cfc76f0d2a085399 /gr-fft | |
parent | 291513738c41128bd2ed37b26c53eb7273903dab (diff) | |
download | gnuradio-37f752257d7fc336de1fe85a5a83134e66441e6e.tar.gz gnuradio-37f752257d7fc336de1fe85a5a83134e66441e6e.tar.bz2 gnuradio-37f752257d7fc336de1fe85a5a83134e66441e6e.zip |
gr: set a common GR_TEST_TARGET_DEPS for all module unit tests
Each unit test shares common dependencies,
but we have been neglecting to set these.
In this changeset, we set one top level GR_TEST_TARGET_DEPS,
and simply append module-specific dependencies for each test.
This also helps to fix QA tests on windows
which were missing the dependencies list.
Conflicts:
gr-analog/python/CMakeLists.txt
gr-blocks/python/CMakeLists.txt
Diffstat (limited to 'gr-fft')
-rw-r--r-- | gr-fft/python/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gr-fft/python/CMakeLists.txt b/gr-fft/python/CMakeLists.txt index c64df4659..1e354d7a2 100644 --- a/gr-fft/python/CMakeLists.txt +++ b/gr-fft/python/CMakeLists.txt @@ -41,7 +41,7 @@ foreach(py_qa_test_file ${py_qa_test_files}) ${CMAKE_BINARY_DIR}/gr-fft/python ${CMAKE_BINARY_DIR}/gr-fft/swig ) - set(GR_TEST_TARGET_DEPS gruel gnuradio-core gnuradio-fft) + list(APPEND GR_TEST_TARGET_DEPS 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) |