mirror of
https://github.com/ArduPilot/ardupilot.git
synced 2026-02-07 15:12:15 +08:00
9 lines
182 B
Python
9 lines
182 B
Python
#!/usr/bin/env python
|
|
# encoding: utf-8
|
|
|
|
def build(bld):
|
|
bld.ap_find_tests(
|
|
use='ap',
|
|
DOUBLE_PRECISION_SOURCES=['test_math_double.cpp', 'test_vector3.cpp']
|
|
)
|