From f336643e374f531c112cdacd9466223c429d8cf1 Mon Sep 17 00:00:00 2001 From: baldurk Date: Mon, 21 Nov 2016 10:56:28 +0100 Subject: [PATCH] Check for 5.6 Qt specifically in project file. --- qrenderdoc/qrenderdoc.pro | 2 ++ 1 file changed, 2 insertions(+) diff --git a/qrenderdoc/qrenderdoc.pro b/qrenderdoc/qrenderdoc.pro index cf7e4cf95..8e07002fa 100644 --- a/qrenderdoc/qrenderdoc.pro +++ b/qrenderdoc/qrenderdoc.pro @@ -8,6 +8,8 @@ QT += core gui widgets lessThan(QT_MAJOR_VERSION, 5): error("requires Qt 5") +equals(QT_MAJOR_VERSION, 5): lessThan(QT_MINOR_VERSION, 6): error("requires Qt 5.6") + TARGET = qrenderdoc TEMPLATE = app