summaryrefslogtreecommitdiff
path: root/gr-vocoder/grc
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/grc
parent309798aea8f35e4a208c62ebf349fb5553b8d907 (diff)
gr-vocoder: gsm subcomponent using external gsm library
Diffstat (limited to 'gr-vocoder/grc')
-rw-r--r--gr-vocoder/grc/CMakeLists.txt13
1 files changed, 10 insertions, 3 deletions
diff --git a/gr-vocoder/grc/CMakeLists.txt b/gr-vocoder/grc/CMakeLists.txt
index 35a585a754..e6c8115dbe 100644
--- a/gr-vocoder/grc/CMakeLists.txt
+++ b/gr-vocoder/grc/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
#
@@ -31,8 +31,6 @@ install(FILES
vocoder_g723_24_encode_sb.xml
vocoder_g723_40_decode_bs.xml
vocoder_g723_40_encode_sb.xml
- vocoder_gsm_fr_decode_ps.xml
- vocoder_gsm_fr_encode_sp.xml
vocoder_ulaw_decode_bs.xml
vocoder_ulaw_encode_sb.xml
DESTINATION ${GRC_BLOCKS_DIR}
@@ -47,3 +45,12 @@ if(LIBCODEC2_FOUND)
COMPONENT "vocoder_python"
)
endif(LIBCODEC2_FOUND)
+
+if(LIBGSM_FOUND)
+ install(FILES
+ vocoder_gsm_fr_decode_ps.xml
+ vocoder_gsm_fr_encode_sp.xml
+ DESTINATION ${GRC_BLOCKS_DIR}
+ COMPONENT "vocoder_python"
+ )
+endif(LIBGSM_FOUND)