Statistics
| Branch: | Tag: | Revision:

root / gr-qtgui / apps / CMakeLists.txt @ eb4305b9

History | View | Annotate | Download (1.3 kB)

1
# Copyright 2012 Free Software Foundation, Inc.
2
#
3
# This file is part of GNU Radio
4
#
5
# GNU Radio is free software; you can redistribute it and/or modify
6
# it under the terms of the GNU General Public License as published by
7
# the Free Software Foundation; either version 3, or (at your option)
8
# any later version.
9
#
10
# GNU Radio is distributed in the hope that it will be useful,
11
# but WITHOUT ANY WARRANTY; without even the implied warranty of
12
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
# GNU General Public License for more details.
14
#
15
# You should have received a copy of the GNU General Public License
16
# along with GNU Radio; see the file COPYING.  If not, write to
17
# the Free Software Foundation, Inc., 51 Franklin Street,
18
# Boston, MA 02110-1301, USA.
19
20
include(GrPython)
21
22
GR_PYTHON_INSTALL(
23
    FILES
24
    plot_form.py
25
    DESTINATION ${GR_PYTHON_DIR}/gnuradio/qtgui
26
    COMPONENT "qtgui_python"
27
)
28
29
GR_PYTHON_INSTALL(
30
    PROGRAMS
31
    gr_time_plot_c
32
    gr_time_plot_f
33
    gr_time_plot_i
34
    gr_time_plot_s
35
    gr_time_plot_b
36
    gr_psd_plot_c
37
    gr_psd_plot_f
38
    gr_psd_plot_i
39
    gr_psd_plot_s
40
    gr_psd_plot_b
41
    gr_spectrogram_plot_c
42
    gr_spectrogram_plot_f
43
    gr_spectrogram_plot_i
44
    gr_spectrogram_plot_s
45
    gr_spectrogram_plot_b
46
    gr_constellation_plot
47
    DESTINATION ${GR_RUNTIME_DIR}
48
    COMPONENT "qtgui_python"
49
)