mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-02 14:13:42 -04:00
12 lines
153 B
Python
12 lines
153 B
Python
#!/usr/bin/env python
|
|
# encoding: utf-8
|
|
|
|
def build(bld):
|
|
|
|
if bld.env.BOARD != 'sitl':
|
|
return
|
|
|
|
bld.ap_find_tests(
|
|
use='ap',
|
|
)
|