qgroundcontrol.pro 9.01 KB
Newer Older
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
#-------------------------------------------------
#
# QGroundControl - Micro Air Vehicle Groundstation
#
# Please see our website at <http://qgroundcontrol.org>
#
# Author:
# Lorenz Meier <mavteam@student.ethz.ch>
#
# (c) 2009-2010 PIXHAWK Team
#
# This file is part of the mav groundstation project
# QGroundControl is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
# QGroundControl is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# You should have received a copy of the GNU General Public License
# along with QGroundControl. If not, see <http://www.gnu.org/licenses/>.
#
#-------------------------------------------------


27 28 29 30 31
# Include QMapControl map library
# prefer version from external directory /
# from http://github.com/pixhawk/qmapcontrol/
# over bundled version in lib directory
# Version from GIT repository is preferred
32
# include ( "../qmapcontrol/QMapControl/QMapControl.pri" ) #{
33
# Include bundled version if necessary
34

35
include(lib/QMapControl/QMapControl.pri)
36

37 38 39 40 41 42
# message("Including bundled QMapControl version as FALLBACK. This is fine on Linux and MacOS, but not the best choice in Windows")
QT += network \
    opengl \
    svg \
    xml \
    phonon
43 44 45 46 47
TEMPLATE = app
TARGET = qgroundcontrol
BASEDIR = .
BUILDDIR = build
LANGUAGE = C++
48
CONFIG += debug_and_release \
49
    console
50 51 52 53
OBJECTS_DIR = $$BUILDDIR/obj
MOC_DIR = $$BUILDDIR/moc
UI_HEADERS_DIR = src/ui/generated

54 55 56 57 58 59
exists(user_config.pri) {
    message("----- USING USER QGROUNDCONTROL CONFIG FROM user_config.pri -----")
    include(user_config.pri)
}


60
# }
pixhawk's avatar
pixhawk committed
61
# Include general settings for MAVGround
62 63
# necessary as last include to override any non-acceptable settings
# done by the plugins above
pixhawk's avatar
pixhawk committed
64
include(qgroundcontrol.pri)
pixhawk's avatar
pixhawk committed
65

66
# QWT plot and QExtSerial depend on paths set by qgroundcontrol.pri
pixhawk's avatar
pixhawk committed
67 68 69 70 71 72 73
# Include serial port library
include(src/lib/qextserialport/qextserialport.pri)

# Include QWT plotting library
include(src/lib/qwt/qwt.pri)
DEPENDPATH += . \
    lib/QMapControl \
74 75
    lib/QMapControl/src \
    plugins
pixhawk's avatar
pixhawk committed
76 77
INCLUDEPATH += . \
    lib/QMapControl \
78
    $$BASEDIR/../mavlink/include/common
unknown's avatar
unknown committed
79

80 81 82
# ../mavlink/include \
# MAVLink/include \
# mavlink/include
pixhawk's avatar
pixhawk committed
83 84 85 86 87 88 89
# Input
FORMS += src/ui/MainWindow.ui \
    src/ui/CommSettings.ui \
    src/ui/SerialSettings.ui \
    src/ui/UASControl.ui \
    src/ui/UASList.ui \
    src/ui/UASInfo.ui \
90
    src/ui/Linechart.ui \
pixhawk's avatar
pixhawk committed
91 92 93 94 95 96 97 98 99 100 101
    src/ui/UASView.ui \
    src/ui/ParameterInterface.ui \
    src/ui/WaypointList.ui \
    src/ui/WaypointView.ui \
    src/ui/ObjectDetectionView.ui \
    src/ui/JoystickWidget.ui \
    src/ui/DebugConsole.ui \
    src/ui/MapWidget.ui \
    src/ui/XMLCommProtocolWidget.ui \
    src/ui/HDDisplay.ui \
    src/ui/MAVLinkSettingsWidget.ui \
lm's avatar
lm committed
102
    src/ui/AudioOutputWidget.ui \
103
    src/ui/QGCSensorSettingsWidget.ui \
pixhawk's avatar
pixhawk committed
104 105
    src/ui/watchdog/WatchdogControl.ui \
    src/ui/watchdog/WatchdogProcessView.ui \
106 107
    src/ui/watchdog/WatchdogView.ui \
    src/ui/QGCFirmwareUpdate.ui \
108
    src/ui/QGCPxImuFirmwareUpdate.ui \
lm's avatar
lm committed
109
    src/ui/QGCDataPlot2D.ui \
pixhawk's avatar
pixhawk committed
110
    src/ui/QGCRemoteControlView.ui \
111
    src/ui/WaypointGlobalView.ui
pixhawk's avatar
pixhawk committed
112 113 114 115 116 117 118 119 120 121
INCLUDEPATH += src \
    src/ui \
    src/ui/linechart \
    src/ui/uas \
    src/ui/map \
    src/uas \
    src/comm \
    include/ui \
    src/input \
    src/lib/qmapcontrol \
122
    src/ui/mavlink \
123
    src/ui/param \
lm's avatar
lm committed
124 125
    src/ui/watchdog \
    src/ui/map3D
pixhawk's avatar
pixhawk committed
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
HEADERS += src/MG.h \
    src/Core.h \
    src/uas/UASInterface.h \
    src/uas/UAS.h \
    src/uas/UASManager.h \
    src/comm/LinkManager.h \
    src/comm/LinkInterface.h \
    src/comm/SerialLinkInterface.h \
    src/comm/SerialLink.h \
    src/comm/SerialSimulationLink.h \
    src/comm/ProtocolInterface.h \
    src/comm/MAVLinkProtocol.h \
    src/comm/AS4Protocol.h \
    src/ui/CommConfigurationWindow.h \
    src/ui/SerialConfigurationWindow.h \
    src/ui/MainWindow.h \
    src/ui/uas/UASControlWidget.h \
    src/ui/uas/UASListWidget.h \
    src/ui/uas/UASInfoWidget.h \
    src/ui/HUD.h \
    src/ui/linechart/LinechartWidget.h \
    src/ui/linechart/LinechartPlot.h \
    src/ui/linechart/Scrollbar.h \
    src/ui/linechart/ScrollZoomer.h \
    src/configuration.h \
    src/ui/uas/UASView.h \
    src/ui/CameraView.h \
    src/comm/MAVLinkSimulationLink.h \
    src/comm/UDPLink.h \
    src/ui/ParameterInterface.h \
    src/ui/WaypointList.h \
    src/Waypoint.h \
    src/ui/WaypointView.h \
    src/ui/ObjectDetectionView.h \
    src/input/JoystickInput.h \
    src/ui/JoystickWidget.h \
    src/ui/DebugConsole.h \
    src/ui/MapWidget.h \
    src/ui/XMLCommProtocolWidget.h \
    src/ui/mavlink/DomItem.h \
    src/ui/mavlink/DomModel.h \
    src/comm/MAVLinkXMLParser.h \
    src/ui/HDDisplay.h \
    src/ui/MAVLinkSettingsWidget.h \
    src/ui/AudioOutputWidget.h \
    src/GAudioOutput.h \
172
    src/LogCompressor.h \
lm's avatar
lm committed
173
    src/ui/QGCParamWidget.h \
174
    src/ui/QGCSensorSettingsWidget.h \
175 176 177
    src/ui/linechart/Linecharts.h \
    src/uas/SlugsMAV.h \
    src/uas/PxQuadMAV.h \
178
    src/uas/ArduPilotMAV.h \
179
    src/comm/MAVLinkSyntaxHighlighter.h \
pixhawk's avatar
pixhawk committed
180 181
    src/ui/watchdog/WatchdogControl.h \
    src/ui/watchdog/WatchdogProcessView.h \
182
    src/ui/watchdog/WatchdogView.h \
183
    src/uas/UASWaypointManager.h \
184
    src/ui/HSIDisplay.h \
185 186
    src/QGC.h \
    src/ui/QGCFirmwareUpdate.h \
187
    src/ui/QGCPxImuFirmwareUpdate.h \
188 189
    src/comm/MAVLinkLightProtocol.h \
    src/ui/QGCDataPlot2D.h \
Bryan Godbolt's avatar
Bryan Godbolt committed
190
    src/ui/linechart/IncrementalPlot.h \
191 192
    src/ui/map/Waypoint2DIcon.h \
    src/ui/map/MAV2DIcon.h \
pixhawk's avatar
pixhawk committed
193
    src/ui/QGCRemoteControlView.h \
lm's avatar
lm committed
194 195 196 197
    src/ui/WaypointGlobalView.h \
    src/ui/map3D/Q3DWidget.h \
    src/ui/map3D/CheetahModel.h \
    src/ui/map3D/CheetahGL.h \
198
    src/ui/map3D/QMap3DWidget.h \
199 200 201 202 203
    src/ui/map3D/Texture.h \
    src/ui/map3D/TextureCache.h \
    src/ui/map3D/WebImage.h \
    src/ui/map3D/WebImageCache.h \
    src/ui/map3D/Imagery.h
pixhawk's avatar
pixhawk committed
204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244
SOURCES += src/main.cc \
    src/Core.cc \
    src/uas/UASManager.cc \
    src/uas/UAS.cc \
    src/comm/LinkManager.cc \
    src/comm/SerialLink.cc \
    src/comm/SerialSimulationLink.cc \
    src/comm/MAVLinkProtocol.cc \
    src/comm/AS4Protocol.cc \
    src/ui/CommConfigurationWindow.cc \
    src/ui/SerialConfigurationWindow.cc \
    src/ui/MainWindow.cc \
    src/ui/uas/UASControlWidget.cc \
    src/ui/uas/UASListWidget.cc \
    src/ui/uas/UASInfoWidget.cc \
    src/ui/HUD.cc \
    src/ui/linechart/LinechartWidget.cc \
    src/ui/linechart/LinechartPlot.cc \
    src/ui/linechart/Scrollbar.cc \
    src/ui/linechart/ScrollZoomer.cc \
    src/ui/uas/UASView.cc \
    src/ui/CameraView.cc \
    src/comm/MAVLinkSimulationLink.cc \
    src/comm/UDPLink.cc \
    src/ui/ParameterInterface.cc \
    src/ui/WaypointList.cc \
    src/Waypoint.cc \
    src/ui/WaypointView.cc \
    src/ui/ObjectDetectionView.cc \
    src/input/JoystickInput.cc \
    src/ui/JoystickWidget.cc \
    src/ui/DebugConsole.cc \
    src/ui/MapWidget.cc \
    src/ui/XMLCommProtocolWidget.cc \
    src/ui/mavlink/DomItem.cc \
    src/ui/mavlink/DomModel.cc \
    src/comm/MAVLinkXMLParser.cc \
    src/ui/HDDisplay.cc \
    src/ui/MAVLinkSettingsWidget.cc \
    src/ui/AudioOutputWidget.cc \
    src/GAudioOutput.cc \
245
    src/LogCompressor.cc \
lm's avatar
lm committed
246
    src/ui/QGCParamWidget.cc \
247
    src/ui/QGCSensorSettingsWidget.cc \
248 249 250
    src/ui/linechart/Linecharts.cc \
    src/uas/SlugsMAV.cc \
    src/uas/PxQuadMAV.cc \
251
    src/uas/ArduPilotMAV.cc \
252
    src/comm/MAVLinkSyntaxHighlighter.cc \
pixhawk's avatar
pixhawk committed
253 254
    src/ui/watchdog/WatchdogControl.cc \
    src/ui/watchdog/WatchdogProcessView.cc \
255
    src/ui/watchdog/WatchdogView.cc \
256
    src/uas/UASWaypointManager.cc \
pixhawk's avatar
pixhawk committed
257
    src/ui/HSIDisplay.cc \
258 259
    src/QGC.cc \
    src/ui/QGCFirmwareUpdate.cc \
260
    src/ui/QGCPxImuFirmwareUpdate.cc \
261 262
    src/comm/MAVLinkLightProtocol.cc \
    src/ui/QGCDataPlot2D.cc \
263 264 265
    src/ui/linechart/IncrementalPlot.cc \
    src/ui/map/Waypoint2DIcon.cc \
    src/ui/map/MAV2DIcon.cc \
pixhawk's avatar
pixhawk committed
266
    src/ui/QGCRemoteControlView.cc \
267
    src/ui/WaypointGlobalView.cc \
lm's avatar
lm committed
268 269 270
    src/ui/map3D/Q3DWidget.cc \
    src/ui/map3D/CheetahModel.cc \
    src/ui/map3D/CheetahGL.cc \
271
    src/ui/map3D/QMap3DWidget.cc \
272 273 274 275 276
    src/ui/map3D/Texture.cc \
    src/ui/map3D/TextureCache.cc \
    src/ui/map3D/WebImageCache.cc \
    src/ui/map3D/WebImage.cc \
    src/ui/map3D/Imagery.cc
pixhawk's avatar
pixhawk committed
277
RESOURCES = mavground.qrc
278 279

# Include RT-LAB Library
280
win32:exists(src/lib/opalrt/OpalApi.h) { 
281
    message("Building support for Opal-RT")
Bryan Godbolt's avatar
Bryan Godbolt committed
282 283
    LIBS += -LC:\OPAL-RT\RT-LAB7.2.4\Common\bin \
        -lOpalApi
284
    INCLUDEPATH += src/lib/opalrt
285 286
    HEADERS += src/comm/OpalRT.h \
        src/comm/OpalLink.h \
287
        src/comm/Parameter.h \
288
        src/comm/QGCParamID.h \
289 290
        src/comm/ParameterList.h \
        src/ui/OpalLinkConfigurationWindow.h
291 292 293 294
    SOURCES += src/comm/OpalRT.cc \
        src/comm/OpalLink.cc \
        src/comm/Parameter.cc \
        src/comm/QGCParamID.cc \
295 296 297
        src/comm/ParameterList.cc \
        src/ui/OpalLinkConfigurationWindow.cc
    FORMS += src/ui/OpalLinkSettings.ui
298
    DEFINES += OPAL_RT
299
}