mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 06:28:27 -04:00
7f04e0106e
APMrover2 -> ardurover AntennaTracker -> antennatracker ArduCopter -> arducopter ArduPlane -> arduplane
23 lines
453 B
Python
23 lines
453 B
Python
#!/usr/bin/env python
|
|
# encoding: utf-8
|
|
|
|
import ardupilotwaf
|
|
|
|
def build(bld):
|
|
vehicle = bld.path.name
|
|
ardupilotwaf.vehicle_stlib(
|
|
bld,
|
|
name=vehicle + '_libs',
|
|
vehicle=vehicle,
|
|
libraries=ardupilotwaf.COMMON_VEHICLE_DEPENDENT_LIBRARIES + [
|
|
'PID',
|
|
],
|
|
use='mavlink',
|
|
)
|
|
|
|
ardupilotwaf.program(
|
|
bld,
|
|
program_name='antennatracker',
|
|
use=vehicle + '_libs',
|
|
)
|