Browse Source

Raise min Qt version to 5.5+

QGC4.4
Lorenz Meier 9 years ago
parent
commit
75d1eeafa3
  1. 4
      qgroundcontrol.pro

4
qgroundcontrol.pro

@ -23,8 +23,8 @@ exists($${OUT_PWD}/qgroundcontrol.pro) { @@ -23,8 +23,8 @@ exists($${OUT_PWD}/qgroundcontrol.pro) {
message(Qt version $$[QT_VERSION])
!equals(QT_MAJOR_VERSION, 5) | !greaterThan(QT_MINOR_VERSION, 3) {
error("Unsupported Qt version, 5.4+ is required")
!equals(QT_MAJOR_VERSION, 5) | !greaterThan(QT_MINOR_VERSION, 4) {
error("Unsupported Qt version, 5.5+ is required")
}
include(QGCCommon.pri)

Loading…
Cancel
Save