mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-11 02:18:29 -04:00
25 lines
517 B
Plaintext
25 lines
517 B
Plaintext
|
#!/usr/bin/env python
|
||
|
# encoding: utf-8
|
||
|
|
||
|
def build(bld):
|
||
|
bld.ap_stlib(
|
||
|
name= 'iofirmware_libs',
|
||
|
ap_vehicle='iofirmware',
|
||
|
ap_libraries= [
|
||
|
'AP_Buffer',
|
||
|
'AP_Common',
|
||
|
'AP_HAL',
|
||
|
'AP_HAL_Empty',
|
||
|
'AP_Math',
|
||
|
'AP_RCProtocol',
|
||
|
],
|
||
|
exclude_src=[
|
||
|
'libraries/AP_HAL_ChibiOS/Storage.cpp'
|
||
|
]
|
||
|
)
|
||
|
bld.ap_program(
|
||
|
program_name='iofirmware',
|
||
|
use='iofirmware_libs',
|
||
|
program_groups=['bin'],
|
||
|
)
|