diff options
author | A. Maitland Bottoms <bottoms@debian.org> | 2016-06-25 17:54:28 -0400 |
---|---|---|
committer | A. Maitland Bottoms <bottoms@debian.org> | 2016-06-25 18:49:56 -0400 |
commit | 7e20b582f8fff0ad63771705eeb6a037ce9b8628 (patch) | |
tree | 96a3acabc5a92ba493e50f5a13ef8f7144321c40 /gr-vocoder/python/vocoder | |
parent | 45cbe43da3317d9c872672553185d36c5cdf59bd (diff) |
gr-vocoder: codec2 subcomponent using external codec2 library
Diffstat (limited to 'gr-vocoder/python/vocoder')
-rw-r--r-- | gr-vocoder/python/vocoder/CMakeLists.txt | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/gr-vocoder/python/vocoder/CMakeLists.txt b/gr-vocoder/python/vocoder/CMakeLists.txt index ca8323daab..1626df1868 100644 --- a/gr-vocoder/python/vocoder/CMakeLists.txt +++ b/gr-vocoder/python/vocoder/CMakeLists.txt @@ -42,7 +42,20 @@ if(ENABLE_TESTING) ) include(GrTest) - file(GLOB py_qa_test_files "qa_*.py") + list(APPEND py_qa_test_files + qa_alaw_vocoder.py + qa_cvsd_vocoder.py + qa_g721_vocoder.py + qa_g723_24_vocoder.py + qa_g723_40_vocoder.py + qa_gsm_full_rate.py + qa_ulaw_vocoder.py + ) + if(LIBCODEC2_FOUND) + list(APPEND py_qa_test_files + qa_codec2_vocoder.py + ) + endif() foreach(py_qa_test_file ${py_qa_test_files}) get_filename_component(py_qa_test_name ${py_qa_test_file} NAME_WE) GR_ADD_TEST(${py_qa_test_name} ${QA_PYTHON_EXECUTABLE} ${PYTHON_DASH_B} ${py_qa_test_file}) |