mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-02-09 09:24:01 -04:00
12 lines
172 B
Python
12 lines
172 B
Python
#!/usr/bin/env python
|
|
# encoding: utf-8
|
|
|
|
import ardupilotwaf
|
|
|
|
def build(bld):
|
|
ardupilotwaf.ap_program(
|
|
bld,
|
|
use='ap',
|
|
blddestdir='tools',
|
|
)
|