mirror of https://github.com/ArduPilot/ardupilot
waf: keep non-variant options definitions together
Keep definition of options that are stored in the "non-variant" configuration together.
This commit is contained in:
parent
5597cc40e9
commit
b65f63ffc1
10
wscript
10
wscript
|
@ -66,6 +66,11 @@ def options(opt):
|
||||||
default='sitl',
|
default='sitl',
|
||||||
help='Target board to build, choices are %s.' % boards_names)
|
help='Target board to build, choices are %s.' % boards_names)
|
||||||
|
|
||||||
|
g.add_option('--debug',
|
||||||
|
action='store_true',
|
||||||
|
default=False,
|
||||||
|
help='Configure as debug variant.')
|
||||||
|
|
||||||
g.add_option('--no-submodule-update',
|
g.add_option('--no-submodule-update',
|
||||||
dest='submodule_update',
|
dest='submodule_update',
|
||||||
action='store_false',
|
action='store_false',
|
||||||
|
@ -80,11 +85,6 @@ revisions.
|
||||||
default=False,
|
default=False,
|
||||||
help='Enable benchmarks.')
|
help='Enable benchmarks.')
|
||||||
|
|
||||||
g.add_option('--debug',
|
|
||||||
action='store_true',
|
|
||||||
default=False,
|
|
||||||
help='Configure as debug variant.')
|
|
||||||
|
|
||||||
g.add_option('--disable-lttng', action='store_true',
|
g.add_option('--disable-lttng', action='store_true',
|
||||||
default=False,
|
default=False,
|
||||||
help="Don't use lttng even if supported by board and dependencies available")
|
help="Don't use lttng even if supported by board and dependencies available")
|
||||||
|
|
Loading…
Reference in New Issue