From 12f172c6aac4bf30b9c21392ed155bb310ac99ea Mon Sep 17 00:00:00 2001 From: David Rosca Date: Wed, 21 Oct 2015 11:04:21 +0200 Subject: [PATCH] Verify that QtWebEngine 5.6 is available See #1729 --- QupZilla.pro | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/QupZilla.pro b/QupZilla.pro index c28b1403f..36fe4fa0f 100644 --- a/QupZilla.pro +++ b/QupZilla.pro @@ -10,6 +10,10 @@ lessThan(QT_VERSION, 5.5) { error("QupZilla requires at least Qt 5.5!") } +lessThan(QT.webengine.VERSION, 5.6) { + error("QupZilla requires at least QtWebEngine 5.6!") +} + # Create plugins directory first on Mac / Linux mac|unix: system(test -d bin/plugins || mkdir bin/plugins)