mirror of https://github.com/ArduPilot/ardupilot
11 lines
141 B
Plaintext
11 lines
141 B
Plaintext
|
#!/usr/bin/env python
|
||
|
# encoding: utf-8
|
||
|
|
||
|
import ardupilotwaf
|
||
|
|
||
|
def build(bld):
|
||
|
ardupilotwaf.program(
|
||
|
bld,
|
||
|
use='ap',
|
||
|
)
|