diff options
author | Josh Morman <mormjb@gmail.com> | 2020-01-14 11:58:31 -0500 |
---|---|---|
committer | Martin Braun <martin.braun@ettus.com> | 2020-01-24 23:49:10 -0800 |
commit | 2f8c0092ae0ac25387e0f9b7e36c8850d3d64229 (patch) | |
tree | 282b97fe24db2b842313905bdf5dcfd9562f85df /gr-utils/python/blocktool/cli.py | |
parent | a11d2e36c63a3011ab2b3407798b766068e31d8f (diff) |
blocktool: add include paths option
Diffstat (limited to 'gr-utils/python/blocktool/cli.py')
-rw-r--r-- | gr-utils/python/blocktool/cli.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/gr-utils/python/blocktool/cli.py b/gr-utils/python/blocktool/cli.py index dbb7b7cbc5..a68c6e1676 100644 --- a/gr-utils/python/blocktool/cli.py +++ b/gr-utils/python/blocktool/cli.py @@ -66,6 +66,8 @@ def run_blocktool(module): help='blocktool helper comments will be added in the header file') @click.option('-o', '--output', is_flag=True, help='If given, a file with desired output format will be generated') +@click.option('-I', '--include_paths', default=None, + help='Comma separated list of include paths for header files') def cli(**kwargs): """ Block header parsing tool. |