summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authorJocelyn Turcotte <jocelyn.turcotte@digia.com>2014-08-19 16:08:18 +0200
committerJocelyn Turcotte <jocelyn.turcotte@digia.com>2014-08-19 16:24:30 +0200
commit5713fecdd724e7bda4f34d6b16f1a8a804ee2cc4 (patch)
tree20202913d34daf387f3e4f41c41c22345d0b9977 /tools
parent2db9af9251c54cfc6eab46df5b77559f3c8c0a0b (diff)
Disable the build on XCode < 5
Chromium itself requires XCode 5 to build and would require a few modifications to build with the version of libc++ that ships with XCode 4. Disable the build on that environment to at least get passed the Qt5 CI. Change-Id: I296055ac1880a9e09e2c0e8343058ff5add837c0 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@digia.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/qmake/mkspecs/features/functions.prf2
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/qmake/mkspecs/features/functions.prf b/tools/qmake/mkspecs/features/functions.prf
index 5b5e3b84a..c6b712a7f 100644
--- a/tools/qmake/mkspecs/features/functions.prf
+++ b/tools/qmake/mkspecs/features/functions.prf
@@ -1,5 +1,7 @@
defineTest(isPlatformSupported) {
static: return(false)
+ osx:lessThan(QMAKE_XCODE_VERSION, 5): return(false)
+
linux-g++|win32-msvc2013|macx-clang: return(true)
return(false)
}