mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-08 17:08:28 -04:00
c2e3f05dbf
It helps to distinguish between things from waf and things from ardupilotwaf.
11 lines
151 B
Python
11 lines
151 B
Python
#!/usr/bin/env python
|
|
# encoding: utf-8
|
|
|
|
def build(bld):
|
|
if bld.env.BOARD in ['sitl']:
|
|
return
|
|
|
|
bld.ap_example(
|
|
use='ap',
|
|
)
|