summaryrefslogtreecommitdiffstats
path: root/tools/qmake/mkspecs/features/functions.prf
diff options
context:
space:
mode:
authorMichael BrĂ¼ning <michael.bruning@theqtcompany.com>2015-01-27 10:27:28 +0100
committerMichael BrĂ¼ning <michael.bruning@theqtcompany.com>2015-02-02 10:24:42 +0000
commitfcc9a1d4283079cfa4f36c48b832461d59e8a627 (patch)
treeeca13afed9fe4ba945a46ee8dd2c955632533051 /tools/qmake/mkspecs/features/functions.prf
parent62ac194eeb344efb3c9a9c03106f1b15c41e8e31 (diff)
Bypass the C++11 check for Visual Studio 2013.
Visual Studio enables the C++11 features it supports by default without using the QT_CONFIG logic. Change-Id: Ifcd9ae230a081783256c99183c10fc8295c014cc Reviewed-by: Pierre Rossi <pierre.rossi@theqtcompany.com>
Diffstat (limited to 'tools/qmake/mkspecs/features/functions.prf')
-rw-r--r--tools/qmake/mkspecs/features/functions.prf2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/qmake/mkspecs/features/functions.prf b/tools/qmake/mkspecs/features/functions.prf
index 2470295ed..2e2261cb9 100644
--- a/tools/qmake/mkspecs/features/functions.prf
+++ b/tools/qmake/mkspecs/features/functions.prf
@@ -1,5 +1,5 @@
defineTest(isPlatformSupported) {
- !contains(QT_CONFIG, c++11) {
+ !win32-msvc2013: !contains(QT_CONFIG, c++11) {
skipBuild("C++11 support is required in order to build chromium.")
return(false)
}