mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-19 23:28:32 -04:00
fa75824948
useful to check for clean linking of EKF2/EKF3 Co-authored-by: Peter Barker <pbarker@barker.dropbear.id.au>
25 lines
510 B
Python
25 lines
510 B
Python
#!/usr/bin/env python
|
|
# encoding: utf-8
|
|
|
|
def build(bld):
|
|
bld.ap_stlib(
|
|
name='AP_DAL' + '_libs',
|
|
ap_vehicle='AP_DAL_Standalone',
|
|
ap_libraries=[
|
|
'AP_NavEKF2',
|
|
'AP_NavEKF3',
|
|
'AP_NavEKF',
|
|
'AP_Common',
|
|
'AP_Math',
|
|
'AP_DAL',
|
|
'AP_InternalError',
|
|
'AP_Declination',
|
|
'AP_RTC',
|
|
],
|
|
)
|
|
|
|
bld.ap_program(
|
|
program_groups=['examples'],
|
|
use='AP_DAL_libs',
|
|
)
|