summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2017-10-07 12:38:08 +0200
committerDavid Robillard <d@drobilla.net>2017-12-18 11:40:32 +0100
commitec8c6ee585dedfb03728b80b22009ce141be07ce (patch)
tree1a69455f0e056cd4e9bdff33a4fcd8805219d972
parent436648a05bcf973c23aba10070d82d1d7af84fc7 (diff)
downloaddrobillad-ec8c6ee585dedfb03728b80b22009ce141be07ce.tar.gz
drobillad-ec8c6ee585dedfb03728b80b22009ce141be07ce.tar.bz2
drobillad-ec8c6ee585dedfb03728b80b22009ce141be07ce.zip
Clean up waf options
-rw-r--r--wscript5
1 files changed, 3 insertions, 2 deletions
diff --git a/wscript b/wscript
index e3dae49..21ee6be 100644
--- a/wscript
+++ b/wscript
@@ -91,8 +91,9 @@ def options(opt):
opt.load('compiler_cxx')
opt.load('lv2')
autowaf.set_options(opt, test=True)
- opt.add_option('--cmd', type='string', dest='cmd',
- help='Command to run from build directory (for run command)')
+ run_opts = opt.add_option_group('Run options')
+ run_opts.add_option('--cmd', type='string', dest='cmd',
+ help='command to run from build directory')
for i in projects:
opt.recurse(i)