You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
422 B
19 lines
422 B
#!/usr/bin/env python |
|
# encoding: utf-8 |
|
|
|
def build(bld): |
|
vehicle = bld.path.name |
|
bld.ap_stlib( |
|
name=vehicle + '_libs', |
|
vehicle=vehicle, |
|
libraries=bld.ap_common_vehicle_libraries() + [ |
|
'PID', |
|
], |
|
use='mavlink', |
|
) |
|
|
|
bld.ap_program( |
|
program_name='antennatracker', |
|
program_groups=['bin', 'antennatracker'], |
|
use=vehicle + '_libs', |
|
)
|
|
|