diff options
-rw-r--r-- | gr-filter/CMakeLists.txt | 1 | ||||
-rw-r--r-- | gr-filter/apps/CMakeLists.txt | 30 | ||||
-rwxr-xr-x | gr-filter/apps/gr_filter_design (renamed from gr-utils/src/python/gr_filter_design) | 0 | ||||
-rw-r--r-- | gr-utils/src/python/CMakeLists.txt | 1 |
4 files changed, 31 insertions, 1 deletions
diff --git a/gr-filter/CMakeLists.txt b/gr-filter/CMakeLists.txt index b77a3d9d44..f912c14e28 100644 --- a/gr-filter/CMakeLists.txt +++ b/gr-filter/CMakeLists.txt @@ -92,6 +92,7 @@ if(ENABLE_PYTHON) add_subdirectory(swig) add_subdirectory(python) add_subdirectory(grc) + add_subdirectory(apps) endif(ENABLE_PYTHON) add_subdirectory(examples) add_subdirectory(doc) diff --git a/gr-filter/apps/CMakeLists.txt b/gr-filter/apps/CMakeLists.txt new file mode 100644 index 0000000000..61e2f183ad --- /dev/null +++ b/gr-filter/apps/CMakeLists.txt @@ -0,0 +1,30 @@ +# 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, +# Boston, MA 02110-1301, USA. + +######################################################################## +# Install python files and apps +######################################################################## +include(GrPython) + +GR_PYTHON_INSTALL( + PROGRAMS + gr_filter_design + DESTINATION ${GR_RUNTIME_DIR} + COMPONENT "filter_python" +) diff --git a/gr-utils/src/python/gr_filter_design b/gr-filter/apps/gr_filter_design index cc21ea5e76..cc21ea5e76 100755 --- a/gr-utils/src/python/gr_filter_design +++ b/gr-filter/apps/gr_filter_design diff --git a/gr-utils/src/python/CMakeLists.txt b/gr-utils/src/python/CMakeLists.txt index 90caeb2343..faef52ddf5 100644 --- a/gr-utils/src/python/CMakeLists.txt +++ b/gr-utils/src/python/CMakeLists.txt @@ -49,7 +49,6 @@ GR_PYTHON_INSTALL( gr_plot_iq gr_plot_short gr_plot_qt - gr_filter_design DESTINATION ${GR_RUNTIME_DIR} COMPONENT "utils" ) |