summaryrefslogtreecommitdiffstats
path: root/mkspecs
diff options
context:
space:
mode:
authorMichal Klocek <michal.klocek@qt.io>2018-09-18 12:54:09 +0200
committerMichal Klocek <michal.klocek@qt.io>2018-10-23 09:45:04 +0000
commit90f52fd2e5b15fde227231d4c1fc47490ce364d6 (patch)
tree41848170da1235794a5d3178b9ffa415b371bc79 /mkspecs
parentbd178893f27a3068bc7d63fe2fb9a60aa6a20bb3 (diff)
Add extra config check for x11 ozone plugin
In case of cross compilation for targets with x11, check also for dependencies. Change-Id: I32df962a61e5a13ee1290ab2c256f0f222dafbd3 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'mkspecs')
-rw-r--r--mkspecs/features/functions.prf9
1 files changed, 9 insertions, 0 deletions
diff --git a/mkspecs/features/functions.prf b/mkspecs/features/functions.prf
index a26f1258d..c9bd65b03 100644
--- a/mkspecs/features/functions.prf
+++ b/mkspecs/features/functions.prf
@@ -127,3 +127,12 @@ defineReplace(pkgConfigHostExecutable) {
export(QMAKE_DISTCLEAN)
return($$system_quote($$system_path($$wrapper_name)))
}
+
+defineTest(hasX11Dependencies) {
+ for(package, $$list("libdrm xcomposite xcursor xi xrandr xtst")) {
+ !qtConfig(webengine-system-$$package) {
+ return(false)
+ }
+ }
+ return(true)
+}