mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-07 16:38:30 -04:00
14 lines
214 B
Python
14 lines
214 B
Python
#!/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',
|
|
)
|