Merge pull request #2241

e1b4bcb build: minimum required qt version is 5.9 (selsta)
This commit is contained in:
luigi1111 2019-07-12 20:32:14 -05:00
commit c10ea20f83
No known key found for this signature in database
GPG Key ID: F4ACA0183641E010

View File

@ -1,6 +1,6 @@
# qml components require at least QT 5.7.0
lessThan (QT_MAJOR_VERSION, 5) | lessThan (QT_MINOR_VERSION, 7) {
error("Can't build with Qt $${QT_VERSION}. Use at least Qt 5.7.0")
# qml components require at least QT 5.9.0
lessThan (QT_MAJOR_VERSION, 5) | lessThan (QT_MINOR_VERSION, 9) {
error("Can't build with Qt $${QT_VERSION}. Use at least Qt 5.9.0")
}
TEMPLATE = app