aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.md8
-rw-r--r--qbs/imports/QtcProduct.qbs2
-rw-r--r--qtcreator.pro4
3 files changed, 7 insertions, 7 deletions
diff --git a/README.md b/README.md
index a686b0c6813..6daded0a4fd 100644
--- a/README.md
+++ b/README.md
@@ -27,7 +27,7 @@ https://doc.qt.io/qtcreator-extending/coding-style.html
Prerequisites:
-* Qt 5.12.0 or later
+* Qt 5.14.0 or later
* Qt WebEngine module for QtWebEngine based help viewer
* On Windows:
* ActiveState Active Perl
@@ -91,7 +91,7 @@ For detailed information on the supported compilers, see
for example, `c:\work`. If you plan to use MinGW and Microsoft Visual
Studio simultaneously or mix different Qt versions, we recommend
creating a directory structure which reflects that. For example:
- `C:\work\qt5.12.0-vs15, C:\work\qt5.12.0-mingw`.
+ `C:\work\qt5.14.0-vs17, C:\work\qt5.14.0-mingw`.
4. Download and install Perl from <https://www.activestate.com/activeperl>
and check that perl.exe is added to the path. Run `perl -v` to verify
@@ -311,7 +311,7 @@ offer CMake find packages, which reduce the steps of configuring Qt Creator to a
cmake \
-G Ninja \
-D CMAKE_BUILD_TYPE=Release \
- -D CMAKE_PREFIX_PATH=~/Qt/5.12.5/gcc_64;~/llvm \
+ -D CMAKE_PREFIX_PATH=~/Qt/5.14.2/gcc_64;~/llvm \
../qt-creator
cmake --build .
@@ -320,7 +320,7 @@ offer CMake find packages, which reduce the steps of configuring Qt Creator to a
cmake ^
-G Ninja ^
-D CMAKE_BUILD_TYPE=Release ^
- -D CMAKE_PREFIX_PATH=c:\Qt\5.12.5\msvc2017_64;c:\llvm ^
+ -D CMAKE_PREFIX_PATH=c:\Qt\5.14.2\msvc2017_64;c:\llvm ^
..\qt-creator
cmake --build .
diff --git a/qbs/imports/QtcProduct.qbs b/qbs/imports/QtcProduct.qbs
index 206b5c2ada1..be3653ffe06 100644
--- a/qbs/imports/QtcProduct.qbs
+++ b/qbs/imports/QtcProduct.qbs
@@ -27,7 +27,7 @@ Product {
enableFallback: false
}
}
- Depends { name: "Qt.core"; versionAtLeast: "5.12.0" }
+ Depends { name: "Qt.core"; versionAtLeast: "5.14.0" }
// TODO: Should fall back to what came from Qt.core for Qt < 5.7, but we cannot express that
// atm. Conditionally pulling in a module that sets the property is also not possible,
diff --git a/qtcreator.pro b/qtcreator.pro
index a8cb39fac37..7d055942ad6 100644
--- a/qtcreator.pro
+++ b/qtcreator.pro
@@ -1,9 +1,9 @@
include(qtcreator.pri)
#version check qt
-!minQtVersion(5, 12, 0) {
+!minQtVersion(5, 14, 0) {
message("Cannot build $$IDE_DISPLAY_NAME with Qt version $${QT_VERSION}.")
- error("Use at least Qt 5.12.0.")
+ error("Use at least Qt 5.14.0.")
}
include(doc/doc.pri)