From 345621601ba99a68cd4b9ae871f5b98eb20962d9 Mon Sep 17 00:00:00 2001 From: Sergii Lisovenko <2522054+s-lisovenko@users.noreply.github.com> Date: Fri, 4 Aug 2023 18:41:22 +0300 Subject: [PATCH] Add APMRemoteSupportComponent to CMake Lists This update modifies the CMakeLists.txt files in both the AutoPilotPlugins directory and within the APM subdirectory, adding APMRemoteSupportComponent to the list of components included in the project's build. This change is necessary to ensure that the new APMremoteSupportComponent is compiled when the project is built. --- src/AutoPilotPlugins/APM/CMakeLists.txt | 3 ++- src/AutoPilotPlugins/CMakeLists.txt | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/AutoPilotPlugins/APM/CMakeLists.txt b/src/AutoPilotPlugins/APM/CMakeLists.txt index 565e541..8cd4709 100644 --- a/src/AutoPilotPlugins/APM/CMakeLists.txt +++ b/src/AutoPilotPlugins/APM/CMakeLists.txt @@ -14,6 +14,7 @@ SOURCES APMPowerComponent.qml APMPowerComponentSummary.qml APMRadioComponentSummary.qml + APMRemoteSupportComponent.qml APMSafetyComponent.qml APMSafetyComponentCopter.qml APMSafetyComponentPlane.qml @@ -32,4 +33,4 @@ SOURCES APMTuningComponentCopter.qml APMTuningComponentSub.qml -) \ No newline at end of file +) diff --git a/src/AutoPilotPlugins/CMakeLists.txt b/src/AutoPilotPlugins/CMakeLists.txt index e737b81..5331d61 100644 --- a/src/AutoPilotPlugins/CMakeLists.txt +++ b/src/AutoPilotPlugins/CMakeLists.txt @@ -18,6 +18,7 @@ add_library(AutoPilotPlugins APM/APMMotorComponent.cc APM/APMPowerComponent.cc APM/APMRadioComponent.cc + APM/APMRemoteSupportComponent.cc APM/APMSafetyComponent.cc APM/APMSensorsComponent.cc APM/APMSensorsComponentController.cc