waf: create program groups for main products

Currently we need to build a different binary for each type of copter frame.
This is a preparation for setting all those binaries to a group called
"copter". We create the groups for the rest of the main products for
consistency.
This commit is contained in:
Gustavo Jose de Sousa 2016-03-24 17:07:13 -03:00 committed by Lucas De Marchi
parent b251d14778
commit a4c099feaa
4 changed files with 4 additions and 0 deletions

View File

@ -26,5 +26,6 @@ def build(bld):
bld.ap_program(
program_name='ardurover',
program_groups=['bin', 'rover'],
use=vehicle + '_libs',
)

View File

@ -14,5 +14,6 @@ def build(bld):
bld.ap_program(
program_name='antennatracker',
program_groups=['bin', 'antennatracker'],
use=vehicle + '_libs',
)

View File

@ -35,5 +35,6 @@ def build(bld):
bld.ap_program(
program_name='arducopter',
program_groups=['bin', 'copter'],
use=vehicle + '_libs',
)

View File

@ -36,5 +36,6 @@ def build(bld):
bld.ap_program(
program_name='arduplane',
program_groups=['bin', 'plane'],
use=vehicle + '_libs',
)