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.
 
 
 
 
 
 

24 lines
510 B

#!/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',
)