qgroundcontrol.pro 14.8 KB
Newer Older
1
# -------------------------------------------------
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
# 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/>.
18
# -------------------------------------------------
19 20 21 22 23
# 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
24
# include ( "../qmapcontrol/QMapControl/QMapControl.pri" ) #{
25
# Include bundled version if necessary
26

27
include(lib/QMapControl/QMapControl.pri)
28

29 30 31 32 33
# 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 \
pixhawk's avatar
pixhawk committed
34 35
    phonon \
    webkit
36 37
TEMPLATE = app
TARGET = qgroundcontrol
38
BASEDIR = $$IN_PWD
39
TARGETDIR = $$OUT_PWD
40
BUILDDIR = $$TARGETDIR/build
41 42 43 44
LANGUAGE = C++
OBJECTS_DIR = $$BUILDDIR/obj
MOC_DIR = $$BUILDDIR/moc
UI_HEADERS_DIR = src/ui/generated
45 46
MAVLINK_CONF = ""

47 48 49 50
# If the user config file exists, it will be included.
# if the variable MAVLINK_CONF contains the name of an
# additional project, QGroundControl includes the support
# of custom MAVLink messages of this project
51
exists(user_config.pri) { 
52
    include(user_config.pri)
53 54 55
    message("----- USING CUSTOM USER QGROUNDCONTROL CONFIG FROM user_config.pri -----")
    message("Adding support for additional MAVLink messages for: " $$MAVLINK_CONF)
    message("------------------------------------------------------------------------")
56
}
INIDETAM's avatar
INIDETAM committed
57

58
INCLUDEPATH += $$BASEDIR/../mavlink/include/common
59 60 61 62 63 64 65
contains(MAVLINK_CONF, pixhawk) { 
    # Remove the default set - it is included anyway
    INCLUDEPATH -= $$BASEDIR/../mavlink/include/common
    
    # PIXHAWK SPECIAL MESSAGES
    INCLUDEPATH += $$BASEDIR/../mavlink/include/pixhawk
    DEFINES += QGC_USE_PIXHAWK_MESSAGES
66
}
67 68 69 70 71 72 73
contains(MAVLINK_CONF, slugs) { 
    # Remove the default set - it is included anyway
    INCLUDEPATH -= $$BASEDIR/../mavlink/include/common
    
    # SLUGS SPECIAL MESSAGES
    INCLUDEPATH += $$BASEDIR/../mavlink/include/slugs
    DEFINES += QGC_USE_SLUGS_MESSAGES
74
}
75 76 77 78 79 80 81
contains(MAVLINK_CONF, ualberta) { 
    # Remove the default set - it is included anyway
    INCLUDEPATH -= $$BASEDIR/../mavlink/include/common
    
    # UALBERTA SPECIAL MESSAGES
    INCLUDEPATH += $$BASEDIR/../mavlink/include/ualberta
    DEFINES += QGC_USE_UALBERTA_MESSAGES
82
}
83
contains(MAVLINK_CONF, ardupilotmega) { 
84 85
    # Remove the default set - it is included anyway
    INCLUDEPATH -= $$BASEDIR/../mavlink/include/common
86
    
87 88 89
    # UALBERTA SPECIAL MESSAGES
    INCLUDEPATH += $$BASEDIR/../mavlink/include/ardupilotmega
    DEFINES += QGC_USE_ARDUPILOTMEGA_MESSAGES
90
}
91

92
# }
pixhawk's avatar
pixhawk committed
93
# Include general settings for MAVGround
94 95
# necessary as last include to override any non-acceptable settings
# done by the plugins above
pixhawk's avatar
pixhawk committed
96
include(qgroundcontrol.pri)
pixhawk's avatar
pixhawk committed
97

98
# QWT plot and QExtSerial depend on paths set by qgroundcontrol.pri
pixhawk's avatar
pixhawk committed
99 100 101 102 103 104 105
# Include serial port library
include(src/lib/qextserialport/qextserialport.pri)

# Include QWT plotting library
include(src/lib/qwt/qwt.pri)
DEPENDPATH += . \
    lib/QMapControl \
106 107
    lib/QMapControl/src \
    plugins
pixhawk's avatar
pixhawk committed
108 109
INCLUDEPATH += . \
    lib/QMapControl \
110
    $$BASEDIR/../mavlink/include
unknown's avatar
unknown committed
111

112 113 114
# ../mavlink/include \
# MAVLink/include \
# mavlink/include
pixhawk's avatar
pixhawk committed
115 116 117 118 119 120 121
# 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 \
122
    src/ui/Linechart.ui \
pixhawk's avatar
pixhawk committed
123 124 125 126 127 128 129 130 131 132 133
    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
134
    src/ui/AudioOutputWidget.ui \
135
    src/ui/QGCSensorSettingsWidget.ui \
pixhawk's avatar
pixhawk committed
136 137
    src/ui/watchdog/WatchdogControl.ui \
    src/ui/watchdog/WatchdogProcessView.ui \
138 139
    src/ui/watchdog/WatchdogView.ui \
    src/ui/QGCFirmwareUpdate.ui \
140
    src/ui/QGCPxImuFirmwareUpdate.ui \
lm's avatar
lm committed
141
    src/ui/QGCDataPlot2D.ui \
pixhawk's avatar
pixhawk committed
142
    src/ui/QGCRemoteControlView.ui \
143
    src/ui/WaypointGlobalView.ui \
pixhawk's avatar
pixhawk committed
144 145
    src/ui/QMap3D.ui \
    src/ui/QGCWebView.ui \
146
    src/ui/map3D/QGCGoogleEarthView.ui \
147
    src/ui/map3D/QGCGoogleEarthViewWin.ui \
148
    src/ui/SlugsDataSensorView.ui \
149
    src/ui/SlugsHilSim.ui \
150
    src/ui/SlugsPIDControl.ui \
tecnosapiens's avatar
tecnosapiens committed
151
    src/ui/SlugsVideoCamControl.ui \
152
    src/ui/SlugsPadCameraControl.ui \
153 154 155
    src/ui/uas/QGCUnconnectedInfoWidget.ui \
    src/ui/designer/QGCToolWidget.ui \
    src/ui/designer/QGCParamSlider.ui \
156 157
    src/ui/designer/QGCActionButton.ui \
    src/ui/QGCMAVLinkLogPlayer.ui
158

pixhawk's avatar
pixhawk committed
159 160 161 162 163 164 165 166 167 168
INCLUDEPATH += src \
    src/ui \
    src/ui/linechart \
    src/ui/uas \
    src/ui/map \
    src/uas \
    src/comm \
    include/ui \
    src/input \
    src/lib/qmapcontrol \
169
    src/ui/mavlink \
170
    src/ui/param \
lm's avatar
lm committed
171
    src/ui/watchdog \
172 173
    src/ui/map3D \
    src/ui/designer
174

pixhawk's avatar
pixhawk committed
175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220
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 \
221
    src/LogCompressor.h \
lm's avatar
lm committed
222
    src/ui/QGCParamWidget.h \
223
    src/ui/QGCSensorSettingsWidget.h \
224 225 226
    src/ui/linechart/Linecharts.h \
    src/uas/SlugsMAV.h \
    src/uas/PxQuadMAV.h \
227
    src/uas/ArduPilotMegaMAV.h \
228
    src/comm/MAVLinkSyntaxHighlighter.h \
pixhawk's avatar
pixhawk committed
229 230
    src/ui/watchdog/WatchdogControl.h \
    src/ui/watchdog/WatchdogProcessView.h \
231
    src/ui/watchdog/WatchdogView.h \
232
    src/uas/UASWaypointManager.h \
233
    src/ui/HSIDisplay.h \
234 235
    src/QGC.h \
    src/ui/QGCFirmwareUpdate.h \
236
    src/ui/QGCPxImuFirmwareUpdate.h \
237
    src/ui/QGCDataPlot2D.h \
Bryan Godbolt's avatar
Bryan Godbolt committed
238
    src/ui/linechart/IncrementalPlot.h \
239 240
    src/ui/map/Waypoint2DIcon.h \
    src/ui/map/MAV2DIcon.h \
pixhawk's avatar
pixhawk committed
241
    src/ui/QGCRemoteControlView.h \
242
    src/ui/RadioCalibration/RadioCalibrationData.h \
243 244 245
    src/ui/RadioCalibration/RadioCalibrationWindow.h \
    src/ui/RadioCalibration/AirfoilServoCalibrator.h \
    src/ui/RadioCalibration/SwitchCalibrator.h \
246
    src/ui/RadioCalibration/CurveCalibrator.h \
Bryan Godbolt's avatar
Bryan Godbolt committed
247
    src/ui/RadioCalibration/AbstractCalibrator.h \
pixhawk's avatar
pixhawk committed
248 249
    src/comm/QGCMAVLink.h \
    src/ui/QGCWebView.h \
250
    src/ui/map3D/QGCWebPage.h \
251
    src/ui/SlugsDataSensorView.h \
252
    src/ui/SlugsHilSim.h \
253
    src/ui/SlugsPIDControl.h \
tecnosapiens's avatar
tecnosapiens committed
254
    src/ui/SlugsVideoCamControl.h \
pixhawk's avatar
pixhawk committed
255
    src/ui/SlugsPadCameraControl.h \
pixhawk's avatar
pixhawk committed
256
    src/ui/QGCMainWindowAPConfigurator.h \
257
    src/comm/MAVLinkSwarmSimulationLink.h \
258 259 260 261
    src/ui/uas/QGCUnconnectedInfoWidget.h \
    src/ui/designer/QGCToolWidget.h \
    src/ui/designer/QGCParamSlider.h \
    src/ui/designer/QGCActionButton.h \
262
    src/ui/designer/QGCToolWidgetItem.h \
263 264
    src/ui/QGCMAVLinkLogPlayer.h \
    src/comm/MAVLinkSimulationWaypointPlanner.h \
265 266
    src/comm/MAVLinkSimulationMAV.h \
    src/uas/QGCMAVLinkUASFactory.h
267

268 269 270 271 272
# Google Earth is only supported on Mac OS and Windows with Visual Studio Compiler
macx|win32-msvc2008: {
    HEADERS +=    src/ui/map3D/QGCGoogleEarthView.h
}

273 274 275 276
contains(DEPENDENCIES_PRESENT, osg) { 
    message("Including headers for OpenSceneGraph")
    
    # Enable only if OpenSceneGraph is available
277
    HEADERS += src/ui/map3D/Q3DWidget.h \
278 279
        src/ui/map3D/GCManipulator.h \
        src/ui/map3D/ImageWindowGeode.h \
280 281 282
        src/ui/map3D/QOSGWidget.h \
        src/ui/map3D/PixhawkCheetahGeode.h \
        src/ui/map3D/Pixhawk3DWidget.h \
283 284 285 286 287
        src/ui/map3D/Q3DWidgetFactory.h \
        src/ui/map3D/WebImageCache.h \
        src/ui/map3D/WebImage.h \
        src/ui/map3D/TextureCache.h \
        src/ui/map3D/Texture.h \
288
        src/ui/map3D/Imagery.h \
289 290
        src/ui/map3D/HUDScaleGeode.h \
        src/ui/map3D/WaypointGroupNode.h
291 292 293 294 295 296
    contains(DEPENDENCIES_PRESENT, osgearth) { 
        message("Including headers for OSGEARTH")
        
        # Enable only if OpenSceneGraph is available
        HEADERS += src/ui/map3D/QMap3D.h
    }
297
}
298 299 300 301 302
contains(DEPENDENCIES_PRESENT, libfreenect) { 
    message("Including headers for libfreenect")
    
    # Enable only if libfreenect is available
    HEADERS += src/input/Freenect.h
303
}
304

pixhawk's avatar
pixhawk committed
305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345
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 \
346
    src/LogCompressor.cc \
lm's avatar
lm committed
347
    src/ui/QGCParamWidget.cc \
348
    src/ui/QGCSensorSettingsWidget.cc \
349 350 351
    src/ui/linechart/Linecharts.cc \
    src/uas/SlugsMAV.cc \
    src/uas/PxQuadMAV.cc \
352
    src/uas/ArduPilotMegaMAV.cc \
353
    src/comm/MAVLinkSyntaxHighlighter.cc \
pixhawk's avatar
pixhawk committed
354 355
    src/ui/watchdog/WatchdogControl.cc \
    src/ui/watchdog/WatchdogProcessView.cc \
356
    src/ui/watchdog/WatchdogView.cc \
357
    src/uas/UASWaypointManager.cc \
pixhawk's avatar
pixhawk committed
358
    src/ui/HSIDisplay.cc \
359 360
    src/QGC.cc \
    src/ui/QGCFirmwareUpdate.cc \
361
    src/ui/QGCPxImuFirmwareUpdate.cc \
362
    src/ui/QGCDataPlot2D.cc \
363 364 365
    src/ui/linechart/IncrementalPlot.cc \
    src/ui/map/Waypoint2DIcon.cc \
    src/ui/map/MAV2DIcon.cc \
pixhawk's avatar
pixhawk committed
366
    src/ui/QGCRemoteControlView.cc \
367 368 369
    src/ui/RadioCalibration/RadioCalibrationWindow.cc \
    src/ui/RadioCalibration/AirfoilServoCalibrator.cc \
    src/ui/RadioCalibration/SwitchCalibrator.cc \
370
    src/ui/RadioCalibration/CurveCalibrator.cc \
371
    src/ui/RadioCalibration/AbstractCalibrator.cc \
pixhawk's avatar
pixhawk committed
372 373
    src/ui/RadioCalibration/RadioCalibrationData.cc \
    src/ui/QGCWebView.cc \
374 375 376 377 378
    src/ui/map3D/QGCWebPage.cc \
    src/ui/SlugsDataSensorView.cc \
    src/ui/SlugsHilSim.cc \
    src/ui/SlugsPIDControl.cpp \
    src/ui/SlugsVideoCamControl.cpp \
pixhawk's avatar
pixhawk committed
379
    src/ui/SlugsPadCameraControl.cpp \
pixhawk's avatar
pixhawk committed
380
    src/ui/QGCMainWindowAPConfigurator.cc \
381
    src/comm/MAVLinkSwarmSimulationLink.cc \
382 383 384 385
    src/ui/uas/QGCUnconnectedInfoWidget.cc \
    src/ui/designer/QGCToolWidget.cc \
    src/ui/designer/QGCParamSlider.cc \
    src/ui/designer/QGCActionButton.cc \
386
    src/ui/designer/QGCToolWidgetItem.cc \
387 388
    src/ui/QGCMAVLinkLogPlayer.cc \
    src/comm/MAVLinkSimulationWaypointPlanner.cc \
389 390
    src/comm/MAVLinkSimulationMAV.cc \
    src/uas/QGCMAVLinkUASFactory.cc \
391 392 393 394 395

macx|win32-msvc2008: {
    SOURCES += src/ui/map3D/QGCGoogleEarthView.cc
}

396
contains(DEPENDENCIES_PRESENT, osg) { 
lm's avatar
lm committed
397
    message("Including sources for OpenSceneGraph")
398 399
    
    # Enable only if OpenSceneGraph is available
400
    SOURCES += src/ui/map3D/Q3DWidget.cc \
401 402 403
        src/ui/map3D/ImageWindowGeode.cc \
        src/ui/map3D/GCManipulator.cc \
        src/ui/map3D/QOSGWidget.cc \
404 405
        src/ui/map3D/PixhawkCheetahGeode.cc \
        src/ui/map3D/Pixhawk3DWidget.cc \
406 407 408 409 410
        src/ui/map3D/Q3DWidgetFactory.cc \
        src/ui/map3D/WebImageCache.cc \
        src/ui/map3D/WebImage.cc \
        src/ui/map3D/TextureCache.cc \
        src/ui/map3D/Texture.cc \
411
        src/ui/map3D/Imagery.cc \
412
        src/ui/map3D/HUDScaleGeode.cc \
413 414
        src/ui/map3D/WaypointGroupNode.cc \

415

416 417 418 419 420 421
    contains(DEPENDENCIES_PRESENT, osgearth) { 
        message("Including sources for osgEarth")
        
        # Enable only if OpenSceneGraph is available
        SOURCES += src/ui/map3D/QMap3D.cc
    }
422
}
423
contains(DEPENDENCIES_PRESENT, libfreenect) { 
lm's avatar
lm committed
424
    message("Including sources for libfreenect")
425
    
426 427
    # Enable only if libfreenect is available
    SOURCES += src/input/Freenect.cc
428 429
}
RESOURCES += mavground.qrc
430 431

# Include RT-LAB Library
432
win32:exists(src/lib/opalrt/OpalApi.h):exists(C:/OPAL-RT/RT-LAB7.2.4/Common/bin) {
433
    message("Building support for Opal-RT")
434
    LIBS += -LC:/OPAL-RT/RT-LAB7.2.4/Common/bin \
Bryan Godbolt's avatar
Bryan Godbolt committed
435
        -lOpalApi
436
    INCLUDEPATH += src/lib/opalrt
437 438
    HEADERS += src/comm/OpalRT.h \
        src/comm/OpalLink.h \
439
        src/comm/Parameter.h \
440
        src/comm/QGCParamID.h \
441 442
        src/comm/ParameterList.h \
        src/ui/OpalLinkConfigurationWindow.h
443 444 445 446
    SOURCES += src/comm/OpalRT.cc \
        src/comm/OpalLink.cc \
        src/comm/Parameter.cc \
        src/comm/QGCParamID.cc \
447 448 449
        src/comm/ParameterList.cc \
        src/ui/OpalLinkConfigurationWindow.cc
    FORMS += src/ui/OpalLinkSettings.ui
450
    DEFINES += OPAL_RT
451
}