diff options
author | Josh Blum | 2011-10-08 12:50:46 -0700 |
---|---|---|
committer | Josh Blum | 2011-10-08 12:50:46 -0700 |
commit | 369834c83e26ac090dbac48c8c8e885ba210665a (patch) | |
tree | 43db1afbb3a9b0fad8f1a1788df0e7e3cd095520 /gr-uhd/examples | |
parent | fcc0ce92dd20cc231fc79dab3d47fbb3d5487f98 (diff) | |
download | gnuradio-369834c83e26ac090dbac48c8c8e885ba210665a.tar.gz gnuradio-369834c83e26ac090dbac48c8c8e885ba210665a.tar.bz2 gnuradio-369834c83e26ac090dbac48c8c8e885ba210665a.zip |
gr: updated cmakelists after merge for additional files
Diffstat (limited to 'gr-uhd/examples')
-rw-r--r-- | gr-uhd/examples/CMakeLists.txt | 44 |
1 files changed, 40 insertions, 4 deletions
diff --git a/gr-uhd/examples/CMakeLists.txt b/gr-uhd/examples/CMakeLists.txt index 3e1c80362..f5890a484 100644 --- a/gr-uhd/examples/CMakeLists.txt +++ b/gr-uhd/examples/CMakeLists.txt @@ -1,17 +1,17 @@ # Copyright 2011 Free Software Foundation, Inc. -# +# # This file is part of GNU Radio -# +# # GNU Radio is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3, or (at your option) # any later version. -# +# # GNU Radio is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. -# +# # You should have received a copy of the GNU General Public License # along with GNU Radio; see the file COPYING. If not, write to # the Free Software Foundation, Inc., 51 Franklin Street, @@ -37,3 +37,39 @@ LINK_DIRECTORIES(${Boost_LIBRARY_DIRS}) ######################################################################## ADD_EXECUTABLE(tags_demo tags_demo.cc) TARGET_LINK_LIBRARIES(tags_demo gnuradio-uhd) + +######################################################################## +# Python examples +######################################################################## +IF(ENABLE_PYTHON) +GR_PYTHON_INSTALL( + PROGRAMS + fm_tx4.py + fm_tx_2_daughterboards.py + max_power.py + usrp_am_mw_rcv.py + usrp_nbfm_ptt.py + usrp_nbfm_rcv.py + usrp_spectrum_sense.py + usrp_tv_rcv_nogui.py + usrp_tv_rcv.py + usrp_wfm_rcv2_nogui.py + usrp_wfm_rcv_fmdet.py + usrp_wfm_rcv_nogui.py + usrp_wfm_rcv_pll.py + usrp_wfm_rcv.py + usrp_wfm_rcv_sca.py + usrp_wxapt_rcv.py + DESTINATION ${GR_PKG_DATA_DIR}/examples/uhd + COMPONENT "uhd_python" +) + +GR_PYTHON_INSTALL( + PROGRAMS + multi-antenna/multi_fft.py + multi-antenna/multi_file.py + multi-antenna/multi_scope.py + DESTINATION ${GR_PKG_DATA_DIR}/examples/multi-antenna + COMPONENT "uhd_python" +) +ENDIF(ENABLE_PYTHON) |