Browse Source

CMake: add Qml targets for AutoPilotPlugins

QGC4.4
Tomaz Canabrava 6 years ago committed by Daniel Agar
parent
commit
4ee269d353
  1. 35
      src/AutoPilotPlugins/APM/CMakeLists.txt
  2. 4
      src/AutoPilotPlugins/CMakeLists.txt
  3. 9
      src/AutoPilotPlugins/Common/CMakeLists.txt
  4. 23
      src/AutoPilotPlugins/PX4/CMakeLists.txt

35
src/AutoPilotPlugins/APM/CMakeLists.txt

@ -0,0 +1,35 @@ @@ -0,0 +1,35 @@
add_custom_target(APMAutoPilotPluginQml
SOURCES
APMAirframeComponent.qml
APMAirframeComponentSummary.qml
APMCameraComponent.qml
APMCameraComponentSummary.qml
APMCameraSubComponent.qml
APMFlightModesComponent.qml
APMFlightModesComponentSummary.qml
APMHeliComponent.qml
APMLightsComponent.qml
APMLightsComponentSummary.qml
APMNotSupported.qml
APMPowerComponent.qml
APMPowerComponentSummary.qml
APMRadioComponentSummary.qml
APMSafetyComponent.qml
APMSafetyComponentCopter.qml
APMSafetyComponentPlane.qml
APMSafetyComponentRover.qml
APMSafetyComponentSub.qml
APMSafetyComponentSummary.qml
APMSafetyComponentSummaryCopter.qml
APMSafetyComponentSummaryPlane.qml
APMSafetyComponentSummaryRover.qml
APMSafetyComponentSummarySub.qml
APMSensorsComponent.qml
APMSensorsComponentSummary.qml
APMSubFrameComponent.qml
APMSubFrameComponentSummary.qml
APMSubMotorComponent.qml
APMTuningComponentCopter.qml
APMTuningComponentSub.qml
)

4
src/AutoPilotPlugins/CMakeLists.txt

@ -1,4 +1,8 @@ @@ -1,4 +1,8 @@
add_subdirectory(APM)
add_subdirectory(Common)
add_subdirectory(PX4)
add_library(AutoPilotPlugins
APM/APMAirframeComponent.cc
APM/APMAirframeComponentController.cc

9
src/AutoPilotPlugins/Common/CMakeLists.txt

@ -0,0 +1,9 @@ @@ -0,0 +1,9 @@
add_custom_target(CommonAutoPilotPluginQml
SOURCES
ESP8266Component.qml
ESP8266ComponentSummary.qml
MotorComponent.qml
RadioComponent.qml
SetupPage.qml
SyslinkComponent.qml
)

23
src/AutoPilotPlugins/PX4/CMakeLists.txt

@ -0,0 +1,23 @@ @@ -0,0 +1,23 @@
add_custom_target(PX4AutoPilotPluginQml
SOURCES
AirframeComponent.qml
AirframeComponentSummary.qml
CameraComponent.qml
CameraComponentSummary.qml
FlightModesComponentSummary.qml
PX4AdvancedFlightModes.qml
PX4FlightModes.qml
PX4RadioComponentSummary.qml
PX4SimpleFlightModes.qml
PX4TuningComponentCopter.qml
PX4TuningComponentPlane.qml
PX4TuningComponentVTOL.qml
PowerComponent.qml
PowerComponentSummary.qml
SafetyComponent.qml
SafetyComponentSummary.qml
SensorsComponent.qml
SensorsComponentSummary.qml
SensorsComponentSummaryFixedWing.qml
SensorsSetup.qml
)
Loading…
Cancel
Save