mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-22 16:48:29 -04:00
14 lines
214 B
Plaintext
14 lines
214 B
Plaintext
|
#!/usr/bin/env python
|
||
|
# encoding: utf-8
|
||
|
|
||
|
import ardupilotwaf
|
||
|
|
||
|
def build(bld):
|
||
|
# TODO: Test code doesn't build. Fix or delete the test.
|
||
|
return
|
||
|
|
||
|
ardupilotwaf.program(
|
||
|
bld,
|
||
|
use='ap',
|
||
|
)
|