mirror of https://github.com/ArduPilot/ardupilot
Replay: allow build with "./waf replay"
a bit easier to remember
This commit is contained in:
parent
03f2e853ce
commit
e122d8ae8e
|
@ -22,6 +22,6 @@ def build(bld):
|
|||
)
|
||||
|
||||
bld.ap_program(
|
||||
program_groups='tools',
|
||||
program_groups=['tools','replay'],
|
||||
use=vehicle + '_libs',
|
||||
)
|
||||
|
|
2
wscript
2
wscript
|
@ -588,7 +588,7 @@ ardupilotwaf.build_command('check-all',
|
|||
doc='shortcut for `waf check --alltests`',
|
||||
)
|
||||
|
||||
for name in ('antennatracker', 'copter', 'heli', 'plane', 'rover', 'sub', 'bootloader','iofirmware','AP_Periph'):
|
||||
for name in ('antennatracker', 'copter', 'heli', 'plane', 'rover', 'sub', 'bootloader','iofirmware','AP_Periph','replay'):
|
||||
ardupilotwaf.build_command(name,
|
||||
program_group_list=name,
|
||||
doc='builds %s programs' % name,
|
||||
|
|
Loading…
Reference in New Issue