summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/src.pro2
-rw-r--r--tools/qmake/mkspecs/features/functions.prf1
2 files changed, 2 insertions, 1 deletions
diff --git a/src/src.pro b/src/src.pro
index 5b31a22f8..60f873c76 100644
--- a/src/src.pro
+++ b/src/src.pro
@@ -26,5 +26,5 @@ isPlatformSupported() {
SUBDIRS += webenginewidgets
}
} else {
- warning("QtWebEngine is not maintained on this platform and is therefore disabled.")
+ warning("QtWebEngine is not maintained for this platform/configuration and is therefore disabled.")
}
diff --git a/tools/qmake/mkspecs/features/functions.prf b/tools/qmake/mkspecs/features/functions.prf
index 2db0c3ab1..5b5e3b84a 100644
--- a/tools/qmake/mkspecs/features/functions.prf
+++ b/tools/qmake/mkspecs/features/functions.prf
@@ -1,4 +1,5 @@
defineTest(isPlatformSupported) {
+ static: return(false)
linux-g++|win32-msvc2013|macx-clang: return(true)
return(false)
}