aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.md8
-rw-r--r--qbs/imports/QtcPlugin.qbs2
-rw-r--r--qtcreator.pro4
3 files changed, 6 insertions, 8 deletions
diff --git a/README.md b/README.md
index d48d5df651c..bef59ad6c74 100644
--- a/README.md
+++ b/README.md
@@ -10,19 +10,17 @@ Windows 7 or later
(K)Ubuntu Linux 14.04 (64-bit) or later
macOS 10.8 or later
-Building the sources requires Qt 5.5.0 or later.
-
## Compiling Qt Creator
Prerequisites:
-* Qt 5.5.0 or later
+* Qt 5.6.0 or later
* On Windows:
* ActiveState Active Perl
- * MinGW with g++ 4.7 or Visual Studio 2013 Update 2 or later
+ * MinGW with g++ 4.8 or Visual Studio 2015 or later
* jom
* On Mac OS X: latest Xcode
-* On Linux: g++ 4.7 or later
+* On Linux: g++ 4.8 or later
The installed toolchains have to match the one Qt was compiled with.
diff --git a/qbs/imports/QtcPlugin.qbs b/qbs/imports/QtcPlugin.qbs
index ed6d2b6760e..c81d2bdf142 100644
--- a/qbs/imports/QtcPlugin.qbs
+++ b/qbs/imports/QtcPlugin.qbs
@@ -12,7 +12,7 @@ QtcProduct {
property var pluginRecommends: []
property var pluginTestDepends: []
- property string minimumQtVersion: "5.5.0"
+ property string minimumQtVersion: "5.6.0"
condition: QtcFunctions.versionIsAtLeast(Qt.core.version, minimumQtVersion)
targetName: QtcFunctions.qtLibraryName(qbs, name)
diff --git a/qtcreator.pro b/qtcreator.pro
index 191747331b0..1292836db24 100644
--- a/qtcreator.pro
+++ b/qtcreator.pro
@@ -1,9 +1,9 @@
include(qtcreator.pri)
#version check qt
-!minQtVersion(5, 5, 0) {
+!minQtVersion(5, 6, 0) {
message("Cannot build Qt Creator with Qt version $${QT_VERSION}.")
- error("Use at least Qt 5.5.0.")
+ error("Use at least Qt 5.6.0.")
}
include(doc/doc.pri)