Error out if Qt build is less than Qt 5

This commit is contained in:
baldurk
2016-09-14 14:05:57 +02:00
parent 7ca1c2237c
commit 76f2dd50ca
+2 -2
View File
@@ -4,9 +4,9 @@
#
#-------------------------------------------------
QT += core gui
QT += core gui widgets
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
lessThan(QT_MAJOR_VERSION, 5): error("requires Qt 5")
TARGET = qrenderdoc
TEMPLATE = app