summaryrefslogtreecommitdiffstats
path: root/configure.json
diff options
context:
space:
mode:
authorMichal Klocek <michal.klocek@qt.io>2020-01-10 13:10:37 +0100
committerMichal Klocek <michal.klocek@qt.io>2020-01-13 15:48:04 +0100
commit95d5a8e74fd9c861aa71492ec97f1cf819d84784 (patch)
tree7e1e08635691cf51abaef97e01e96d65a4899590 /configure.json
parent9233ffa2d10094faeea05b48c9779ad73942e6a1 (diff)
Report error when qt ios is built with debug only
Doing only debug build is not supported at the moment. Add error to configure. Task-number: QTBUG-71990 Change-Id: If35d00c3f09d733efe63d5ea66d07e4a3ec922cc Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@qt.io>
Diffstat (limited to 'configure.json')
-rw-r--r--configure.json5
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.json b/configure.json
index 1ae09ef386..62d78f8dc6 100644
--- a/configure.json
+++ b/configure.json
@@ -1457,6 +1457,11 @@ Configure with '-qreal float' to create a build that is binary-compatible with 5
{
"type": "emccVersion",
"condition": "config.wasm"
+ },
+ {
+ "type": "error",
+ "condition": "config.ios && features.debug && !features.debug_and_release",
+ "message": "Debug build wihtout Release build is not currently supported on ios see QTBUG-71990. Use -debug-and-release."
}
],