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