QGCCommon.pri 9.66 KB
Newer Older
1 2 3 4 5 6 7 8
################################################################################
#
# (c) 2009-2020 QGROUNDCONTROL PROJECT <http://www.qgroundcontrol.org>
#
# QGroundControl is licensed according to the terms in the file
# COPYING.md in the root of the source code directory.
#
################################################################################
9 10 11

#
# This file contains configuration settings which are common to both the QGC Application and
nopeppermint's avatar
nopeppermint committed
12
# the Location Plugin. It should mainly contains initial CONFIG tag setup and compiler settings.
13 14 15 16 17 18
#

# Setup our supported build types. We do this once here and then use the defined config scopes
# to allow us to easily modify suported build types in one place instead of duplicated throughout
# the project file.

19 20 21
CONFIG -= debug_and_release
CONFIG += warn_on

22
linux {
Daniel Agar's avatar
Daniel Agar committed
23
    linux-g++ | linux-g++-64 | linux-g++-32 | linux-clang {
24
        message("Linux build")
25
        CONFIG  += LinuxBuild
dogmaphobic's avatar
dogmaphobic committed
26
        DEFINES += __STDC_LIMIT_MACROS
27
        DEFINES += QGC_GST_TAISYNC_ENABLED
28 29
        DEFINES += QGC_GST_MICROHARD_ENABLED 
        DEFINES += QGC_ENABLE_MAVLINK_INSPECTOR
30 31 32
        linux-clang {
            message("Linux clang")
            QMAKE_CXXFLAGS += -Qunused-arguments -fcolor-diagnostics
33 34 35 36 37 38
        } else {
            #QMAKE_CXXFLAGS += -H # Handy for debugging why something is getting built when an include file is touched
            QMAKE_CXXFLAGS_WARN_ON += -Werror \
                -Wno-deprecated-copy \      # These come from mavlink headers
                -Wno-unused-parameter \     # gst_plugins-good has these errors
                -Wno-implicit-fallthrough   # gst_plugins-good has these errors
39
        }
ChukRhodes's avatar
ChukRhodes committed
40 41 42 43
    } else : linux-rasp-pi2-g++ {
        message("Linux R-Pi2 build")
        CONFIG += LinuxBuild
        DEFINES += __STDC_LIMIT_MACROS __rasp_pi2__
Gus Grubba's avatar
Gus Grubba committed
44
        DEFINES += QGC_GST_TAISYNC_ENABLED
45 46
        DEFINES += QGC_GST_MICROHARD_ENABLED 
    } else : android-clang {
dogmaphobic's avatar
dogmaphobic committed
47
        CONFIG += AndroidBuild MobileBuild
dogmaphobic's avatar
dogmaphobic committed
48
        DEFINES += __android__
dogmaphobic's avatar
dogmaphobic committed
49
        DEFINES += __STDC_LIMIT_MACROS
dogmaphobic's avatar
dogmaphobic committed
50
        DEFINES += QGC_ENABLE_BLUETOOTH
51
        DEFINES += QGC_GST_TAISYNC_ENABLED
52 53 54 55 56 57 58 59
        DEFINES += QGC_GST_MICROHARD_ENABLED 
        QMAKE_CXXFLAGS_WARN_ON += -Werror \
            -Wno-unused-parameter \             # gst_plugins-good has these errors
            -Wno-implicit-fallthrough \         # gst_plugins-good has these errors
            -Wno-unused-command-line-argument \ # from somewhere in Qt generated build files
            -Wno-parentheses-equality           # android gstreamer header files
        QMAKE_CFLAGS_WARN_ON += \
            -Wno-unused-command-line-argument   # from somewhere in Qt generated build files
dogmaphobic's avatar
dogmaphobic committed
60
        target.path = $$DESTDIR
61 62 63 64 65 66 67 68 69
        equals(ANDROID_TARGET_ARCH, armeabi-v7a)  {
            DEFINES += __androidArm32__
            DEFINES += QGC_ENABLE_MAVLINK_INSPECTOR
            message("Android Arm 32 bit build")
        } else:equals(ANDROID_TARGET_ARCH, arm64-v8a)  {
            DEFINES += __androidArm64__
            DEFINES += QGC_ENABLE_MAVLINK_INSPECTOR
            message("Android Arm 64 bit build")
        } else:equals(ANDROID_TARGET_ARCH, x86)  {
70 71 72
            CONFIG += Androidx86Build
            DEFINES += __androidx86__
            message("Android Arm build")
73 74
        } else {
            error("Unsupported Android architecture: $${ANDROID_TARGET_ARCH}")
75
        }
76 77 78 79
    } else {
        error("Unsuported Linux toolchain, only GCC 32- or 64-bit is supported")
    }
} else : win32 {
80
    contains(QMAKE_TARGET.arch, x86_64) {
81 82
        message("Windows build")
        CONFIG += WindowsBuild
dogmaphobic's avatar
dogmaphobic committed
83
        DEFINES += __STDC_LIMIT_MACROS
Gus Grubba's avatar
Gus Grubba committed
84
        DEFINES += QGC_GST_TAISYNC_ENABLED
85 86 87 88 89 90 91 92 93 94 95 96 97 98
        DEFINES += QGC_GST_MICROHARD_ENABLED 
        DEFINES += QGC_ENABLE_MAVLINK_INSPECTOR
        QMAKE_CFLAGS -= -Zc:strictStrings
        QMAKE_CFLAGS_RELEASE -= -Zc:strictStrings
        QMAKE_CFLAGS_RELEASE_WITH_DEBUGINFO -= -Zc:strictStrings
        QMAKE_CXXFLAGS -= -Zc:strictStrings
        QMAKE_CXXFLAGS_RELEASE -= -Zc:strictStrings
        QMAKE_CXXFLAGS_RELEASE_WITH_DEBUGINFO -= -Zc:strictStrings
        QMAKE_CXXFLAGS += /std:c++17
        QMAKE_CXXFLAGS_WARN_ON += /WX /W3 \
            /wd4005 \   # silence warnings about macro redefinition, these come from the shapefile code with is external
            /wd4290 \   # ignore exception specifications
            /wd4267 \   # silence conversion from 'size_t' to 'int', possible loss of data, these come from gps drivers shared with px4
            /wd4100     # unreferenced formal parameter - gst-plugins-good
99
    } else {
100
        error("Unsupported Windows toolchain, only Visual Studio 2017 64 bit is supported")
101 102 103 104
    }
} else : macx {
    macx-clang | macx-llvm {
        message("Mac build")
105 106 107 108
        CONFIG  += MacBuild
        CONFIG  += x86_64
        CONFIG  -= x86
        DEFINES += QGC_GST_TAISYNC_ENABLED
109 110
        DEFINES += QGC_GST_MICROHARD_ENABLED 
        DEFINES += QGC_ENABLE_MAVLINK_INSPECTOR
111 112 113 114 115
        equals(QT_MAJOR_VERSION, 5) | greaterThan(QT_MINOR_VERSION, 5) {
                QMAKE_MACOSX_DEPLOYMENT_TARGET = 10.7
        } else {
                QMAKE_MACOSX_DEPLOYMENT_TARGET = 10.6
        }
116
        QMAKE_CXXFLAGS += -fvisibility=hidden
117 118
        QMAKE_CXXFLAGS_WARN_ON += -Werror \
            -Wno-unused-parameter           # gst-plugins-good
119 120 121
    } else {
        error("Unsupported Mac toolchain, only 64-bit LLVM+clang is supported")
    }
dogmaphobic's avatar
dogmaphobic committed
122
} else : ios {
dogmaphobic's avatar
dogmaphobic committed
123 124 125
    !equals(QT_MAJOR_VERSION, 5) | !greaterThan(QT_MINOR_VERSION, 4) {
        error("Unsupported Qt version, 5.5.x or greater is required for iOS")
    }
dogmaphobic's avatar
dogmaphobic committed
126
    message("iOS build")
Gus Grubba's avatar
Gus Grubba committed
127
    CONFIG  += iOSBuild MobileBuild app_bundle NoSerialBuild
Don Gagne's avatar
Don Gagne committed
128
    CONFIG  -= bitcode
dogmaphobic's avatar
dogmaphobic committed
129
    DEFINES += __ios__
130
    DEFINES += QGC_NO_GOOGLE_MAPS
Gus Grubba's avatar
Gus Grubba committed
131
    DEFINES += NO_SERIAL_LINK
Gus Grubba's avatar
Gus Grubba committed
132
    DEFINES += QGC_DISABLE_UVC
133
    DEFINES += QGC_GST_TAISYNC_ENABLED
134
    QMAKE_IOS_DEPLOYMENT_TARGET = 11.0
DonLakeFlyer's avatar
DonLakeFlyer committed
135
    QMAKE_APPLE_TARGETED_DEVICE_FAMILY = 1,2 # Universal
dogmaphobic's avatar
dogmaphobic committed
136
    QMAKE_LFLAGS += -Wl,-no_pie
137
} else {
dogmaphobic's avatar
dogmaphobic committed
138 139 140
    error("Unsupported build platform, only Linux, Windows, Android and Mac (Mac OS and iOS) are supported")
}

141 142 143 144 145 146 147 148 149 150 151 152 153 154
# Enable ccache where we can
linux|macx|ios {
    system(which ccache) {
        message("Found ccache, enabling")
        !ios {
            QMAKE_CXX = ccache $$QMAKE_CXX
            QMAKE_CC  = ccache $$QMAKE_CC
        } else {
            QMAKE_CXX = $$PWD/tools/iosccachecc.sh
            QMAKE_CC  = $$PWD/tools/iosccachecxx.sh
        }
    }
}

155 156 157 158 159
!MacBuild {
    # See QGCPostLinkCommon.pri for details on why MacBuild doesn't use DESTDIR
    DESTDIR = staging
}

dogmaphobic's avatar
dogmaphobic committed
160 161
MobileBuild {
    DEFINES += __mobile__
162 163
}

164 165 166 167 168 169 170
StableBuild {
    message("Stable Build")
} else {
    message("Daily Build")
    DEFINES += DAILY_BUILD
}

dogmaphobic's avatar
dogmaphobic committed
171 172 173
# set the QGC version from git

exists ($$PWD/.git) {
174
    GIT_DESCRIBE = $$system(git --git-dir $$PWD/.git --work-tree $$PWD describe --always --tags)
Daniel Agar's avatar
Daniel Agar committed
175 176 177 178 179
    GIT_BRANCH   = $$system(git --git-dir $$PWD/.git --work-tree $$PWD rev-parse --abbrev-ref HEAD)
    GIT_HASH     = $$system(git --git-dir $$PWD/.git --work-tree $$PWD rev-parse --short HEAD)
    GIT_TIME     = $$system(git --git-dir $$PWD/.git --work-tree $$PWD show --oneline --format=\"%ci\" -s HEAD)

    # determine if we're on a tag matching vX.Y.Z (stable release)
180
    contains(GIT_DESCRIBE, v[0-9]+.[0-9]+.[0-9]+) {
Daniel Agar's avatar
Daniel Agar committed
181 182
        # release version "vX.Y.Z"
        GIT_VERSION = $${GIT_DESCRIBE}
183 184 185
        VERSION      = $$replace(GIT_DESCRIBE, "v", "")
        VERSION      = $$replace(VERSION, "-", ".")
        VERSION      = $$section(VERSION, ".", 0, 3)
Daniel Agar's avatar
Daniel Agar committed
186 187 188
    } else {
        # development version "Development branch:sha date"
        GIT_VERSION = "Development $${GIT_BRANCH}:$${GIT_HASH} $${GIT_TIME}"
189
        VERSION         = 0.0.0
Daniel Agar's avatar
Daniel Agar committed
190 191
    }

192 193 194
    MacBuild {
        MAC_VERSION  = $$section(VERSION, ".", 0, 2)
        MAC_BUILD    = $$section(VERSION, ".", 3, 3)
Daniel Agar's avatar
Daniel Agar committed
195
        message(QGroundControl version $${MAC_VERSION} build $${MAC_BUILD} describe $${GIT_VERSION})
196
    } else {
Daniel Agar's avatar
Daniel Agar committed
197
        message(QGroundControl $${GIT_VERSION})
198
    }
dogmaphobic's avatar
dogmaphobic committed
199
} else {
Daniel Agar's avatar
Daniel Agar committed
200
    GIT_VERSION     = None
201 202 203
    VERSION         = 0.0.0   # Marker to indicate out-of-tree build
    MAC_VERSION     = 0.0.0
    MAC_BUILD       = 0
dogmaphobic's avatar
dogmaphobic committed
204 205
}

Daniel Agar's avatar
Daniel Agar committed
206
DEFINES += GIT_VERSION=\"\\\"$$GIT_VERSION\\\"\"
207
DEFINES += EIGEN_MPL2_ONLY
dogmaphobic's avatar
dogmaphobic committed
208

209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231
# Installer configuration

installer {
    CONFIG -= debug
    CONFIG -= debug_and_release
    CONFIG += release
    message(Build Installer)
}

# Setup our supported build flavors

CONFIG(debug, debug|release) {
    message(Debug flavor)
    CONFIG += DebugBuild
} else:CONFIG(release, debug|release) {
    message(Release flavor)
    CONFIG += ReleaseBuild
} else {
    error(Unsupported build flavor)
}

# Setup our build directories

232
SOURCE_DIR = $$IN_PWD
dogmaphobic's avatar
dogmaphobic committed
233 234 235

LANGUAGE = C++

dogmaphobic's avatar
dogmaphobic committed
236 237
LOCATION_PLUGIN_DESTDIR = $${OUT_PWD}/src/QtLocationPlugin
LOCATION_PLUGIN_NAME    = QGeoServiceProviderFactoryQGC
238 239 240 241

# Turn off serial port warnings
DEFINES += _TTY_NOWARN_

242 243 244
MacBuild {
    QMAKE_TARGET_BUNDLE_PREFIX =    org.qgroundcontrol
    QMAKE_BUNDLE =                  qgroundcontrol
245 246 247 248 249 250 251
}

#
# Build-specific settings
#

ReleaseBuild {
252
    DEFINES += QT_NO_DEBUG QT_MESSAGELOGCONTEXT
253 254
    CONFIG += force_debug_info  # Enable debugging symbols on release builds
    !iOSBuild {
DonLakeFlyer's avatar
DonLakeFlyer committed
255 256 257
        !AndroidBuild {
            CONFIG += ltcg              # Turn on link time code generation
        }
258
    }
dogmaphobic's avatar
dogmaphobic committed
259

260
    WindowsBuild {
261 262 263
        # Run compilation using VS compiler using multiple threads
        QMAKE_CXXFLAGS += -MP

264 265 266 267 268 269 270 271 272
        # Enable function level linking and enhanced optimized debugging
        QMAKE_CFLAGS_RELEASE   += /Gy /Zo
        QMAKE_CXXFLAGS_RELEASE += /Gy /Zo
        QMAKE_CFLAGS_RELEASE_WITH_DEBUGINFO   += /Gy /Zo
        QMAKE_CXXFLAGS_RELEASE_WITH_DEBUGINFO += /Gy /Zo

        # Eliminate duplicate COMDATs
        QMAKE_LFLAGS_RELEASE += /OPT:ICF
        QMAKE_LFLAGS_RELEASE_WITH_DEBUGINFO += /OPT:ICF
273 274
    }
}