From 921df719dc6f8e41f66775bcfb6091725cb59776 Mon Sep 17 00:00:00 2001 From: Lars Knoll Date: Fri, 24 Jun 2016 14:13:59 +0200 Subject: 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 --- configure.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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": { -- cgit v1.2.3