forked from ArduPilot/ardupilot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwscript
37 lines (35 loc) · 913 Bytes
/
wscript
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/usr/bin/env python
# encoding: utf-8
def build(bld):
vehicle = bld.path.name
bld.ap_stlib(
name=vehicle + '_libs',
ap_vehicle=vehicle,
ap_libraries=bld.ap_common_vehicle_libraries() + [
'APM_Control',
'AP_AdvancedFailsafe',
'AP_Avoidance',
'AP_Camera',
'AP_L1_Control',
'AP_Navigation',
'AP_TECS',
'AP_InertialNav',
'AC_WPNav',
'AC_AttitudeControl',
'AP_Motors',
'AP_Landing',
'PID',
'AP_Soaring',
'AP_LTM_Telem',
'AP_Devo_Telem',
'AC_AutoTune',
'AP_Follow',
'AC_PrecLand',
'AP_IRLock',
],
)
bld.ap_program(
program_name='arduplane',
program_groups=['bin', 'plane'],
use=vehicle + '_libs',
)