mirror of https://github.com/ArduPilot/ardupilot
waf: split copter and heli builds
this makes things less confusing for users
This commit is contained in:
parent
a0d874baa2
commit
9c040105d6
|
@ -47,7 +47,7 @@ def build(bld):
|
|||
|
||||
bld.ap_program(
|
||||
program_name='arducopter-heli',
|
||||
program_groups=['bin', 'copter'],
|
||||
program_groups=['bin', 'heli'],
|
||||
use=vehicle + '_libs',
|
||||
defines=['FRAME_CONFIG=HELI_FRAME'],
|
||||
)
|
||||
|
|
2
wscript
2
wscript
|
@ -422,7 +422,7 @@ ardupilotwaf.build_command('check-all',
|
|||
doc='shortcut for `waf check --alltests`',
|
||||
)
|
||||
|
||||
for name in ('antennatracker', 'copter', 'plane', 'rover', 'sub'):
|
||||
for name in ('antennatracker', 'copter', 'heli', 'plane', 'rover', 'sub'):
|
||||
ardupilotwaf.build_command(name,
|
||||
program_group_list=name,
|
||||
doc='builds %s programs' % name,
|
||||
|
|
Loading…
Reference in New Issue