QGCExternalLibs.pri 4.02 KB
Newer Older
Don Gagne's avatar
Don Gagne committed
1
#
2
# [REQUIRED] Add support for <inttypes.h> to Windows.
Don Gagne's avatar
Don Gagne committed
3 4 5 6 7 8
#
WindowsBuild {
    INCLUDEPATH += libs/lib/msinttypes
}

#
9
# [REQUIRED] Add support for the MAVLink communications protocol.
10 11
#
# By default MAVLink dialect is hardwired to arudpilotmega. The reason being
12
# the current codebase supports both PX4 and APM flight stack. PX4 flight stack
13 14
# only uses common MAVLink specifications, whereas APM flight stack uses custom
# MAVLink specifications which adds to common. So by using the adupilotmega dialect
15
# QGC can support both in the same codebase.
16

17 18 19 20
# Once the mavlink helper routines include support for multiple dialects within
# a single compiled codebase this hardwiring of dialect can go away. But until then
# this "workaround" is needed.

21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
# In the mean time, it’s possible to define a completely different dialect by defining the
# location and name below.

isEmpty(MAVLINKPATH_REL) {
    MAVLINKPATH_REL = libs/mavlink/include/mavlink/v2.0
}
isEmpty(MAVLINKPATH) {
    MAVLINKPATH     = $$BASEDIR/$$MAVLINKPATH_REL
}
isEmpty(MAVLINK_CONF) {
    MAVLINK_CONF    = ardupilotmega
}

# If defined, all APM specific MAVLink messages are disabled
contains (CONFIG, QGC_DISABLE_APM_MAVLINK) {
    message("Disable APM MAVLink support")
    DEFINES += NO_ARDUPILOT_DIALECT
}
Don Gagne's avatar
Don Gagne committed
39

40 41 42
# First we select the dialect, checking for valid user selection
# Users can override all other settings by specifying MAVLINK_CONF as an argument to qmake
!isEmpty(MAVLINK_CONF) {
43
    message($$sprintf("Using MAVLink dialect '%1'.", $$MAVLINK_CONF))
Don Gagne's avatar
Don Gagne committed
44
}
45 46

# Then we add the proper include paths dependent on the dialect.
Don Gagne's avatar
Don Gagne committed
47
INCLUDEPATH += $$MAVLINKPATH
Lorenz Meier's avatar
Lorenz Meier committed
48 49 50 51 52 53 54 55 56 57

exists($$MAVLINKPATH/common) {
    !isEmpty(MAVLINK_CONF) {
        count(MAVLINK_CONF, 1) {
            exists($$MAVLINKPATH/$$MAVLINK_CONF) {
                INCLUDEPATH += $$MAVLINKPATH/$$MAVLINK_CONF
                DEFINES += $$sprintf('QGC_USE_%1_MESSAGES', $$upper($$MAVLINK_CONF))
            } else {
                error($$sprintf("MAVLink dialect '%1' does not exist at '%2'!", $$MAVLINK_CONF, $$MAVLINKPATH_REL))
            }
58
        } else {
Lorenz Meier's avatar
Lorenz Meier committed
59
            error(Only a single mavlink dialect can be specified in MAVLINK_CONF)
60 61
        }
    } else {
Lorenz Meier's avatar
Lorenz Meier committed
62
        INCLUDEPATH += $$MAVLINKPATH/common
63
    }
Don Gagne's avatar
Don Gagne committed
64
} else {
Lorenz Meier's avatar
Lorenz Meier committed
65
    error($$sprintf("MAVLink folder does not exist at '%1'! Run 'git submodule init && git submodule update' on the command line.",$$MAVLINKPATH_REL))
Don Gagne's avatar
Don Gagne committed
66 67 68
}

#
69 70
# [REQUIRED] EIGEN matrix library
# NOMINMAX constant required to make internal min/max work.
Don Gagne's avatar
Don Gagne committed
71 72 73 74
INCLUDEPATH += libs/eigen
DEFINES += NOMINMAX

#
75
# [REQUIRED] QWT plotting library dependency. Provides plotting capabilities.
Don Gagne's avatar
Don Gagne committed
76
#
Don Gagne's avatar
Don Gagne committed
77
!MobileBuild {
78 79 80
include(libs/qwt.pri)
DEPENDPATH += libs/qwt
INCLUDEPATH += libs/qwt
Don Gagne's avatar
Don Gagne committed
81
}
Don Gagne's avatar
Don Gagne committed
82 83

#
84 85 86
# [REQUIRED] SDL dependency. Provides joystick/gamepad support.
# The SDL is packaged with QGC for the Mac and Windows. Linux support requires installing the SDL
# library (development libraries and static binaries).
Don Gagne's avatar
Don Gagne committed
87 88 89
#
MacBuild {
    INCLUDEPATH += \
90
        $$BASEDIR/libs/lib/Frameworks/SDL2.framework/Headers
Don Gagne's avatar
Don Gagne committed
91 92 93

    LIBS += \
        -F$$BASEDIR/libs/lib/Frameworks \
94
        -framework SDL2
95
} else:LinuxBuild {
96
    PKGCONFIG = sdl2
97
} else:WindowsBuild {
98
    INCLUDEPATH += $$BASEDIR/libs/lib/sdl2/msvc/include
Don Gagne's avatar
Don Gagne committed
99

100 101 102 103 104
    contains(QT_ARCH, i386) {
        LIBS += -L$$BASEDIR/libs/lib/sdl2/msvc/lib/x86
    } else {
        LIBS += -L$$BASEDIR/libs/lib/sdl2/msvc/lib/x64
    }
dogmaphobic's avatar
dogmaphobic committed
105
    LIBS += \
106 107
        -lSDL2main \
        -lSDL2
Don Gagne's avatar
Don Gagne committed
108 109
}

110 111 112 113 114 115 116 117 118 119 120 121 122
#
# [OPTIONAL] Zeroconf for UDP links
#
contains (DEFINES, DISABLE_ZEROCONF) {
    message("Skipping support for Zeroconf (manual override from command line)")
    DEFINES -= DISABLE_ZEROCONF
# Otherwise the user can still disable this feature in the user_config.pri file.
} else:exists(user_config.pri):infile(user_config.pri, DEFINES, DISABLE_ZEROCONF) {
    message("Skipping support for Zeroconf (manual override from user_config.pri)")
# Mac support is built into OS
} else:MacBuild|iOSBuild {
    message("Including support for Zeroconf (Bonjour)")
    DEFINES += QGC_ZEROCONF_ENABLED
Gus Grubba's avatar
Gus Grubba committed
123 124
} else {
    message("Skipping support for Zeroconf (unsupported platform)")
125 126
}