mirror of https://github.com/ArduPilot/ardupilot
14 lines
191 B
Plaintext
14 lines
191 B
Plaintext
|
#!/usr/bin/env python
|
||
|
# encoding: utf-8
|
||
|
|
||
|
import ardupilotwaf
|
||
|
|
||
|
def build(bld):
|
||
|
if bld.env.BOARD in ['sitl']:
|
||
|
return
|
||
|
|
||
|
ardupilotwaf.program(
|
||
|
bld,
|
||
|
use='ap',
|
||
|
)
|