summaryrefslogtreecommitdiff
path: root/gr-utils/bindtool/scripts/batch_gen_gr_modules.py
diff options
context:
space:
mode:
authorJosh Morman <mormjb@gmail.com>2020-05-29 10:11:43 -0400
committerJosh Morman <mormjb@gmail.com>2020-06-04 10:05:48 -0400
commit13b6fc6435e21926977f33e90d93f6fb9530931c (patch)
tree787648651682a624241544d317c02ac740ba5136 /gr-utils/bindtool/scripts/batch_gen_gr_modules.py
parentd933a40f9d117ae3f73600b3b8b76494e9d6ed3d (diff)
pybind: clean up unused script and modtool tests
Diffstat (limited to 'gr-utils/bindtool/scripts/batch_gen_gr_modules.py')
-rw-r--r--gr-utils/bindtool/scripts/batch_gen_gr_modules.py25
1 files changed, 0 insertions, 25 deletions
diff --git a/gr-utils/bindtool/scripts/batch_gen_gr_modules.py b/gr-utils/bindtool/scripts/batch_gen_gr_modules.py
deleted file mode 100644
index a133b18cb3..0000000000
--- a/gr-utils/bindtool/scripts/batch_gen_gr_modules.py
+++ /dev/null
@@ -1,25 +0,0 @@
-from gnuradio.bindtool import BindingGenerator
-
-prefix = '/share/gnuradio/grnext'
-output_dir = '/share/tmp/test_pybind'
-namespace = ['gr']
-module_dir = '/share/gnuradio/grnext/src/gnuradio/gnuradio-runtime/include/gnuradio'
-prefix_include_root = 'gnuradio' #pmt, gnuradio/digital, etc.
-
-prefix = '/share/gnuradio/grnext'
-output_dir = '/share/tmp/test_pybind'
-namespace = ['gr','digital']
-module_dir = '/share/gnuradio/grnext/src/gnuradio/gr-digital/include'
-prefix_include_root = 'gnuradio/digital' #pmt, gnuradio/digital, etc.
-
-prefix = '/share/gnuradio/grnext'
-output_dir = '/share/tmp/test_pybind'
-namespace = ['gr','fft']
-module_dir = '/share/gnuradio/grnext/src/gnuradio/gr-fft/include'
-prefix_include_root = 'gnuradio/fft' #pmt, gnuradio/digital, etc.
-
-import warnings
-with warnings.catch_warnings():
- warnings.filterwarnings("ignore", category=DeprecationWarning)
- bg = BindingGenerator(prefix, namespace, prefix_include_root, output_dir)
- bg.gen_bindings(module_dir) \ No newline at end of file