mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-03 06:28:27 -04:00
f2dec971e7
As an effort to keep things specific to ardupilot API in the build system consistent and easy way to identify.
20 lines
431 B
Python
20 lines
431 B
Python
#!/usr/bin/env python
|
|
# encoding: utf-8
|
|
|
|
def build(bld):
|
|
vehicle = bld.path.name
|
|
bld.ap_stlib(
|
|
name=vehicle + '_libs',
|
|
ap_vehicle=vehicle,
|
|
ap_libraries=bld.ap_common_vehicle_libraries() + [
|
|
'AC_PID',
|
|
],
|
|
use='mavlink',
|
|
)
|
|
|
|
bld.ap_program(
|
|
program_name='antennatracker',
|
|
program_groups=['bin', 'antennatracker'],
|
|
use=vehicle + '_libs',
|
|
)
|