diff options
Diffstat (limited to 'gr-vocoder/lib/CMakeLists.txt')
-rw-r--r-- | gr-vocoder/lib/CMakeLists.txt | 38 |
1 files changed, 21 insertions, 17 deletions
diff --git a/gr-vocoder/lib/CMakeLists.txt b/gr-vocoder/lib/CMakeLists.txt index 43a4156d06..7949e227b7 100644 --- a/gr-vocoder/lib/CMakeLists.txt +++ b/gr-vocoder/lib/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright 2011 Free Software Foundation, Inc. +# Copyright 2011,2013 Free Software Foundation, Inc. # # This file is part of GNU Radio # @@ -29,26 +29,30 @@ include_directories( link_directories(${Boost_LIBRARY_DIRS}) +if(ENABLE_GR_CTRLPORT) + ADD_DEFINITIONS(-DGR_CTRLPORT) +endif(ENABLE_GR_CTRLPORT) + ######################################################################## # Setup library ######################################################################## list(APPEND gr_vocoder_sources - vocoder_alaw_decode_bs.cc - vocoder_alaw_encode_sb.cc - vocoder_codec2_decode_ps.cc - vocoder_codec2_encode_sp.cc - vocoder_cvsd_decode_bs.cc - vocoder_cvsd_encode_sb.cc - vocoder_g721_decode_bs.cc - vocoder_g721_encode_sb.cc - vocoder_g723_24_decode_bs.cc - vocoder_g723_24_encode_sb.cc - vocoder_g723_40_decode_bs.cc - vocoder_g723_40_encode_sb.cc - vocoder_gsm_fr_decode_ps.cc - vocoder_gsm_fr_encode_sp.cc - vocoder_ulaw_decode_bs.cc - vocoder_ulaw_encode_sb.cc + alaw_decode_bs_impl.cc + alaw_encode_sb_impl.cc + codec2_decode_ps_impl.cc + codec2_encode_sp_impl.cc + cvsd_decode_bs_impl.cc + cvsd_encode_sb_impl.cc + g721_decode_bs_impl.cc + g721_encode_sb_impl.cc + g723_24_decode_bs_impl.cc + g723_24_encode_sb_impl.cc + g723_40_decode_bs_impl.cc + g723_40_encode_sb_impl.cc + gsm_fr_decode_ps_impl.cc + gsm_fr_encode_sp_impl.cc + ulaw_decode_bs_impl.cc + ulaw_encode_sb_impl.cc ) ######################################################################## |