From 4782ac09459de031e2cd1342ee73b52f1d53e098 Mon Sep 17 00:00:00 2001 From: Zlatan Date: Mon, 20 Aug 2018 17:27:35 +0200 Subject: [PATCH] Specify require for QT (#646) Just a line of code to bloc people when he tries to compile with QT4. --- src/Cutter.pro | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/Cutter.pro b/src/Cutter.pro index 6f11ce54..68578386 100644 --- a/src/Cutter.pro +++ b/src/Cutter.pro @@ -5,6 +5,9 @@ TARGET = Cutter # The application version VERSION = 1.7 +#required QT version +lessThan(QT_MAJOR_VERSION, 5): error("requires Qt 5") + ICON = img/cutter.icns QT += core gui widgets svg