summaryrefslogtreecommitdiff
path: root/gr-vocoder/python/vocoder
diff options
context:
space:
mode:
authorA. Maitland Bottoms <bottoms@debian.org>2016-06-25 18:08:44 -0400
committerA. Maitland Bottoms <bottoms@debian.org>2016-06-25 18:49:56 -0400
commitd2afb9f9698a34bdd6f6dc43298a4521fcd30da1 (patch)
treed3d93c5013ab93fdd0787652c798aa3147d21fc0 /gr-vocoder/python/vocoder
parent309798aea8f35e4a208c62ebf349fb5553b8d907 (diff)
gr-vocoder: gsm subcomponent using external gsm library
Diffstat (limited to 'gr-vocoder/python/vocoder')
-rw-r--r--gr-vocoder/python/vocoder/CMakeLists.txt8
1 files changed, 6 insertions, 2 deletions
diff --git a/gr-vocoder/python/vocoder/CMakeLists.txt b/gr-vocoder/python/vocoder/CMakeLists.txt
index 1626df1868..02a4320ec5 100644
--- a/gr-vocoder/python/vocoder/CMakeLists.txt
+++ b/gr-vocoder/python/vocoder/CMakeLists.txt
@@ -1,4 +1,4 @@
-# Copyright 2011 Free Software Foundation, Inc.
+# Copyright 2011,2016 Free Software Foundation, Inc.
#
# This file is part of GNU Radio
#
@@ -48,7 +48,6 @@ if(ENABLE_TESTING)
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)
@@ -56,6 +55,11 @@ if(ENABLE_TESTING)
qa_codec2_vocoder.py
)
endif()
+ if(LIBGSM_FOUND)
+ list(APPEND py_qa_test_files
+ qa_gsm_full_rate.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})