ardupilot/Tools/Replay/wscript
Gustavo Jose de Sousa b251d14778 waf: ardupilotwaf: allow multiple program groups for program
The program_dir defaults to the first group's name. That feature will be useful
for "copter" build command, which will build all frame types.
2016-03-26 15:43:08 -03:00

15 lines
252 B
Python

#!/usr/bin/env python
# encoding: utf-8
import boards
def build(bld):
board = boards.get_board(bld.env.BOARD)
if not isinstance(board, boards.linux):
return
bld.ap_program(
use='ap',
program_groups='tools',
)