waf: ardupilotwaf: export program_name and program_group

Export those values to the task generators, so that other tools may use it.
This commit is contained in:
Gustavo Jose de Sousa 2016-02-25 13:04:46 +00:00 committed by Lucas De Marchi
parent 45d1af8833
commit 0329cb14ed

View File

@ -117,6 +117,8 @@ def ap_program(bld, program_group='bin',
tg = tg_constructor(
target='#%s' % name,
name=name,
program_name=program_name,
program_group=program_group,
**kw
)
_grouped_programs.setdefault(program_group, []).append(tg)