summaryrefslogtreecommitdiffstats
path: root/configure.json
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@theqtcompany.com>2016-06-24 14:13:59 +0200
committerLars Knoll <lars.knoll@qt.io>2016-06-24 12:29:07 +0000
commit921df719dc6f8e41f66775bcfb6091725cb59776 (patch)
treee51af4cb7524e7406c85bd7989f3326cf6e8e263 /configure.json
parent06f55f0695932870b8f874949591662a9fb64008 (diff)
Correctly set simulator_and_device in ios builds
A small logic error that sneaked in during the porting of configure. We actually want simulator_and_device to be set if input.sdk is empty, not the other way round. Change-Id: I8f729fbc48617618f981c70887bd4400e0b2a0c3 Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@theqtcompany.com>
Diffstat (limited to 'configure.json')
-rw-r--r--configure.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.json b/configure.json
index 7623997409..1d6aa3fe8b 100644
--- a/configure.json
+++ b/configure.json
@@ -1012,7 +1012,7 @@
},
"simulator_and_device": {
"description": "Build for both simulator and device",
- "condition": "config.ios && input.sdk != ''",
+ "condition": "config.ios && input.sdk == ''",
"output": [ "publicQtConfig" ]
},
"build_all": {