From ecad4ec0f36d81e968a088b27b4325108b6795f1 Mon Sep 17 00:00:00 2001 From: Oleg Semyonov Date: Tue, 16 Apr 2013 11:05:03 +0300 Subject: [PATCH] gcs: bump minimum Qt version to 4.8 (4.7 is not supported anymore) --- ground/openpilotgcs/openpilotgcs.pro | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ground/openpilotgcs/openpilotgcs.pro b/ground/openpilotgcs/openpilotgcs.pro index 57a5f1ecf..de158d9eb 100644 --- a/ground/openpilotgcs/openpilotgcs.pro +++ b/ground/openpilotgcs/openpilotgcs.pro @@ -4,9 +4,9 @@ # #version check qt -contains(QT_VERSION, ^4\\.[0-5]\\..*) { +contains(QT_VERSION, ^4\\.[0-7]\\..*) { message("Cannot build OpenPilot GCS with Qt version $${QT_VERSION}.") - error("Cannot build OpenPilot GCS with Qt version $${QT_VERSION}. Use at least Qt 4.6!") + error("Cannot build OpenPilot GCS with Qt version $${QT_VERSION}. Use at least Qt 4.8!") } include(openpilotgcs.pri)