25 lines
510 B
Plaintext
25 lines
510 B
Plaintext
|
#!/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',
|
||
|
)
|