summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gr-noaa/apps/CMakeLists.txt22
-rw-r--r--gr-pager/apps/CMakeLists.txt13
-rw-r--r--gr-uhd/examples/CMakeLists.txt8
3 files changed, 21 insertions, 22 deletions
diff --git a/gr-noaa/apps/CMakeLists.txt b/gr-noaa/apps/CMakeLists.txt
index e692648b5..37d07ffa0 100644
--- a/gr-noaa/apps/CMakeLists.txt
+++ b/gr-noaa/apps/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,
@@ -21,13 +21,13 @@ include(GrPython)
GR_PYTHON_INSTALL(
PROGRAMS
- hrpt_decode.py
- hrpt_demod.py
- file_rx_hrpt.py
- file_rx_lrit.py
- #usrp_rx_hrpt.py #FIXME no support for usrp
- #usrp_rx_hrpt_nogui.py
- #usrp_rx_lrit.py
+ hrpt_decode.py
+ hrpt_demod.py
+ file_rx_hrpt.py
+ file_rx_lrit.py
+ usrp_rx_hrpt.py
+ usrp_rx_hrpt_nogui.py
+ usrp_rx_lrit.py
DESTINATION ${GR_RUNTIME_DIR}
COMPONENT "noaa_python"
)
diff --git a/gr-pager/apps/CMakeLists.txt b/gr-pager/apps/CMakeLists.txt
index 4b7cd54fa..1965c6e66 100644
--- a/gr-pager/apps/CMakeLists.txt
+++ b/gr-pager/apps/CMakeLists.txt
@@ -17,6 +17,13 @@
# the Free Software Foundation, Inc., 51 Franklin Street,
# Boston, MA 02110-1301, USA.
-#FIXME
-#not bothering to install because the apps require gr-usrp
-#which we are choosing not to support in the cmake build system
+include(GrPython)
+
+GR_PYTHON_INSTALL(
+ PROGRAMS
+ usrp_flex.py
+ usrp_flex_all.py
+ usrp_flex_band.py
+ DESTINATION ${GR_RUNTIME_DIR}
+ COMPONENT "pager_python"
+)
diff --git a/gr-uhd/examples/CMakeLists.txt b/gr-uhd/examples/CMakeLists.txt
index 9e92b89d7..91e2dfdaf 100644
--- a/gr-uhd/examples/CMakeLists.txt
+++ b/gr-uhd/examples/CMakeLists.txt
@@ -64,12 +64,4 @@ GR_PYTHON_INSTALL(
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)