From c9c573d9afab7f207e348d2138c1e449cb991a14 Mon Sep 17 00:00:00 2001 From: Peter Barker Date: Tue, 16 Apr 2024 21:21:39 +1000 Subject: [PATCH] Blimp: move Arming, Beacon and RC_Mapper into ardupilotwaf.py these were built for all vehicles, so put them in the common list --- Blimp/wscript | 3 --- 1 file changed, 3 deletions(-) diff --git a/Blimp/wscript b/Blimp/wscript index 664dd1aeb4..2314b75044 100644 --- a/Blimp/wscript +++ b/Blimp/wscript @@ -9,13 +9,10 @@ def build(bld): ap_libraries=bld.ap_common_vehicle_libraries() + [ 'AC_InputManager', 'AP_InertialNav', - 'AP_RCMapper', 'AP_Avoidance', - 'AP_Arming', 'AP_LTM_Telem', 'AP_Devo_Telem', 'AP_KDECAN', - 'AP_Beacon', 'AP_AdvancedFailsafe', # TODO for some reason compiling GCS_Common.cpp (in libraries) fails if this isn't included. 'AC_AttitudeControl', # for PSCx logging ],