summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@theqtcompany.com>2016-08-15 11:13:00 +0200
committerAlexandru Croitor <alexandru.croitor@qt.io>2016-08-15 13:40:45 +0000
commitb7fde78d7822ed7f2221acfd9db15b3ff579e29d (patch)
tree1d992ab61006d0482947038977f21afd2cf2665e /tools
parentfeebf85d13af90628e12715888e4a1385db8e2f3 (diff)
Explicitly disable the build on Mir
Unfortunately Mir is not supported yet, see EGL context retrieval code in src/core/content_browser_client_qt.cpp. Change-Id: Icade55c4c35f1a2a625479c31699d33853922087 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
Diffstat (limited to 'tools')
-rw-r--r--tools/qmake/mkspecs/features/functions.prf4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/qmake/mkspecs/features/functions.prf b/tools/qmake/mkspecs/features/functions.prf
index a4abf458c..a5481e2b9 100644
--- a/tools/qmake/mkspecs/features/functions.prf
+++ b/tools/qmake/mkspecs/features/functions.prf
@@ -39,6 +39,10 @@ defineTest(isPlatformSupported) {
skipBuild("C++11 support is required in order to build chromium.")
return(false)
}
+ contains(QT_CONFIG, mirclient) {
+ skipBuild("Mir is not yet supported as graphics backend for Qt WebEngine.")
+ return(false)
+ }
static {
skipBuild("Static builds of QtWebEngine aren't supported.")
return(false)