summaryrefslogtreecommitdiff
path: root/gr-utils/modtool/cli/base.py
diff options
context:
space:
mode:
authorJosh Morman <mormjb@gmail.com>2020-04-23 15:03:55 -0400
committerJosh Morman <mormjb@gmail.com>2020-06-04 10:05:48 -0400
commit999c0e723240ee783bca17942f77a9d05bbfc168 (patch)
tree3661aeb0ef10bad228df014a20e5b0a63627c833 /gr-utils/modtool/cli/base.py
parenta4e6d4d55b35ac36dd5915dec5145073d8ec3b9a (diff)
utils: add functionality to generate bindings
This currently exists in two places 1) Bindtool (longevity TBD) which calls blocktool to parse the public header file in the include directory 2) Modtool - binding of headers added to add and bind. rm, update, info, etc still TODO
Diffstat (limited to 'gr-utils/modtool/cli/base.py')
-rw-r--r--gr-utils/modtool/cli/base.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/gr-utils/modtool/cli/base.py b/gr-utils/modtool/cli/base.py
index 3cd0836ad0..2d7de71d53 100644
--- a/gr-utils/modtool/cli/base.py
+++ b/gr-utils/modtool/cli/base.py
@@ -118,8 +118,8 @@ def common_params(func):
help="Base directory of the module. Defaults to the cwd.")
@click.option('--skip-lib', is_flag=True,
help="Don't do anything in the lib/ subdirectory.")
- @click.option('--skip-swig', is_flag=True,
- help="Don't do anything in the swig/ subdirectory.")
+ @click.option('--skip-pybind', is_flag=True,
+ help="Don't do anything in the python/bindings/ subdirectory.")
@click.option('--skip-python', is_flag=True,
help="Don't do anything in the python/ subdirectory.")
@click.option('--skip-grc', is_flag=True,