From 4df303ece7ce69a0e8dc2d14b59637048d7214ec Mon Sep 17 00:00:00 2001 From: Lorn Potter Date: Mon, 28 Oct 2019 18:49:17 +1000 Subject: wasm: fix c++17 detection on windows Our copy function for qtloader.js does not handle quoting when a directory has '+' in the path, and this makes the copy method fail. This is fixed the same way the cxx_future test works Fixes: QTBUG-79552 Change-Id: Iad8331800aa73eea948e7d2650568645a4c0640c Reviewed-by: Joerg Bornemann --- configure.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/configure.json b/configure.json index 96cca22b31..0bf0e6d4e5 100644 --- a/configure.json +++ b/configure.json @@ -322,7 +322,7 @@ "qmake": "CONFIG += c11" } }, - "c++14": { + "cxx14": { "label": "C++14 support", "type": "compile", "test": { @@ -336,7 +336,7 @@ "qmake": "CONFIG += c++11 c++14" } }, - "c++17": { + "cxx17": { "label": "C++17 support", "type": "compile", "test": { @@ -357,7 +357,7 @@ "qmake": "CONFIG += c++11 c++14 c++17" } }, - "c++2a": { + "cxx2a": { "label": "C++2a support", "type": "compile", "test": { @@ -963,12 +963,12 @@ }, "c++14": { "label": "C++14", - "condition": "features.c++11 && tests.c++14", + "condition": "features.c++11 && tests.cxx14", "output": [ "publicFeature", "publicQtConfig" ] }, "c++17": { "label": "C++17", - "condition": "features.c++14 && tests.c++17", + "condition": "features.c++14 && tests.cxx17", "output": [ "publicFeature", "publicQtConfig" ] }, "c++1z": { @@ -979,7 +979,7 @@ "c++2a": { "label": "C++2a", "autoDetect": false, - "condition": "features.c++17 && tests.c++2a", + "condition": "features.c++17 && tests.cxx2a", "output": [ "publicFeature", "publicQtConfig" ] }, "c89": { -- cgit v1.2.3