mirror of https://github.com/ArduPilot/ardupilot
Waf: Display debug config into config summary
This commit is contained in:
parent
7e389afbec
commit
86f39d354f
6
wscript
6
wscript
|
@ -362,6 +362,12 @@ def configure(cfg):
|
|||
else:
|
||||
cfg.end_msg('disabled', color='YELLOW')
|
||||
|
||||
cfg.start_msg('Debug build')
|
||||
if cfg.env.DEBUG:
|
||||
cfg.end_msg('enabled')
|
||||
else:
|
||||
cfg.end_msg('disabled', color='YELLOW')
|
||||
|
||||
cfg.env.append_value('GIT_SUBMODULES', 'mavlink')
|
||||
|
||||
cfg.env.prepend_value('INCLUDES', [
|
||||
|
|
Loading…
Reference in New Issue