summaryrefslogtreecommitdiff
path: root/gr-vocoder/examples
diff options
context:
space:
mode:
authorA. Maitland Bottoms <bottoms@debian.org>2016-06-25 17:54:28 -0400
committerA. Maitland Bottoms <bottoms@debian.org>2016-06-25 18:49:56 -0400
commit7e20b582f8fff0ad63771705eeb6a037ce9b8628 (patch)
tree96a3acabc5a92ba493e50f5a13ef8f7144321c40 /gr-vocoder/examples
parent45cbe43da3317d9c872672553185d36c5cdf59bd (diff)
gr-vocoder: codec2 subcomponent using external codec2 library
Diffstat (limited to 'gr-vocoder/examples')
-rw-r--r--gr-vocoder/examples/CMakeLists.txt9
1 files changed, 8 insertions, 1 deletions
diff --git a/gr-vocoder/examples/CMakeLists.txt b/gr-vocoder/examples/CMakeLists.txt
index 769ddf602a..86cba6d01f 100644
--- a/gr-vocoder/examples/CMakeLists.txt
+++ b/gr-vocoder/examples/CMakeLists.txt
@@ -25,7 +25,6 @@ include(GrPython)
GR_PYTHON_INSTALL(
PROGRAMS
alaw_audio_loopback.py
- codec2_audio_loopback.py
cvsd_audio_loopback.py
g721_audio_loopback.py
g723_24_audio_loopback.py
@@ -35,3 +34,11 @@ GR_PYTHON_INSTALL(
DESTINATION ${GR_PKG_VOCODER_EXAMPLES_DIR}
COMPONENT "vocoder_examples"
)
+if(LIBCODEC2_FOUND)
+ GR_PYTHON_INSTALL(
+ PROGRAMS
+ codec2_audio_loopback.py
+ DESTINATION ${GR_PKG_VOCODER_EXAMPLES_DIR}
+ COMPONENT "vocoder_examples"
+ )
+endif(LIBCODEC2_FOUND)