diff options
author | Volker Schroer <3470424+dl1ksv@users.noreply.github.com> | 2020-10-12 12:19:00 +0200 |
---|---|---|
committer | mormj <34754695+mormj@users.noreply.github.com> | 2020-10-15 12:58:14 -0400 |
commit | 741bedca0bd55a7e538f0604f73e0cb77db0e64f (patch) | |
tree | 84dc26229a46c10824be9ce8545d9405fb13f784 /gr-utils/modtool/cli/bind.py | |
parent | 05046f5abb093d0cf2754dccc6d9b801f14dc780 (diff) |
Adding optional parameter addl_includes to gr_modtool bind, space added
Diffstat (limited to 'gr-utils/modtool/cli/bind.py')
-rw-r--r-- | gr-utils/modtool/cli/bind.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gr-utils/modtool/cli/bind.py b/gr-utils/modtool/cli/bind.py index 6e4fd348ff..0dad3c03b9 100644 --- a/gr-utils/modtool/cli/bind.py +++ b/gr-utils/modtool/cli/bind.py @@ -28,6 +28,8 @@ from .base import common_params, block_name, run, cli_input @click.command('bind', short_help=ModToolGenBindings.description) @click.option('-o', '--output', is_flag=True, help='If given, a file with desired output format will be generated') +@click.option('--addl_includes',default ="", + help = 'comma separated list of additional include directories (default "")') @common_params @block_name def cli(**kwargs): |