blob: 9fc601bb70f625973ebd861c072f4f983f78815e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Copyright 2012 Free Software Foundation, Inc.
#
# This file is part of GNU Radio
#
# SPDX-License-Identifier: GPL-3.0-or-later
#
########################################################################
include(GrPython)
add_subdirectory(gr)
if(ENABLE_GR_CTRLPORT)
add_subdirectory(ctrlport)
endif(ENABLE_GR_CTRLPORT)
GR_PYTHON_INSTALL(FILES
__init__.py
eng_notation.py
eng_option.py
eng_arg.py
gr_unittest.py
DESTINATION ${GR_PYTHON_DIR}/gnuradio
)
|