ardupilot/Tools/Replay/wscript
Gustavo Jose de Sousa 844222870c waf: boards: bind get_board() to configure and build contexts
A convenience, since we don't expect the board to change for a given
configuration.
2016-05-25 17:47:00 -03:00

14 lines
218 B
Python

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