summaryrefslogtreecommitdiffstats
path: root/mkspecs/features/platform.prf
diff options
context:
space:
mode:
Diffstat (limited to 'mkspecs/features/platform.prf')
-rw-r--r--mkspecs/features/platform.prf6
1 files changed, 2 insertions, 4 deletions
diff --git a/mkspecs/features/platform.prf b/mkspecs/features/platform.prf
index bb171f753..7f6cc2e3e 100644
--- a/mkspecs/features/platform.prf
+++ b/mkspecs/features/platform.prf
@@ -34,7 +34,7 @@ defineTest(isPlatformSupported) {
return(false)
}
!qtConfig(webengine-winversion) {
- skipBuild("Needs VS 2015 Update 3 with Cumulative Servicing Release or higher")
+ skipBuild("Needs VS 2017 Update 3.2 with Cumulative Servicing Release or higher")
return(false)
}
} else:osx {
@@ -88,11 +88,9 @@ defineTest(isArchSupported) {
}
defineTest(isGCCVersionSupported) {
- # The below will work for gcc 4.7 and up and also match gcc 5
- greaterThan(QT_GCC_MINOR_VERSION, 6):return(true)
greaterThan(QT_GCC_MAJOR_VERSION, 4):return(true)
- skipBuild("Using gcc version "$$QT_GCC_MAJOR_VERSION"."$$QT_GCC_MINOR_VERSION", but at least gcc version 4.7 is required to build Qt WebEngine.")
+ skipBuild("Using gcc version "$$QT_GCC_MAJOR_VERSION"."$$QT_GCC_MINOR_VERSION", but at least gcc version 5 is required to build Qt WebEngine.")
return(false)
}