From 8a948b3389faa2a3949d382d0880551c3f6347fd Mon Sep 17 00:00:00 2001 From: Ivan Komissarov Date: Wed, 22 Jul 2020 09:42:15 +0200 Subject: Fix setting isBundle:false on macOS in config-ui.qbs Despite the fact that the second Properties item is not evaluated on macOS, this "works" because isBundle is set to undefined (which is false) due to a bug with Properties. Set isBundle:false explicitly for macOS as well. This amends 1eff548646 Change-Id: Ifd5bc3b656a0eff02914e4fe43945b0e8b0f04fe Reviewed-by: Christian Kandeler --- src/app/config-ui/config-ui.qbs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app/config-ui/config-ui.qbs b/src/app/config-ui/config-ui.qbs index 2222e6a17..8b5e37559 100644 --- a/src/app/config-ui/config-ui.qbs +++ b/src/app/config-ui/config-ui.qbs @@ -24,6 +24,7 @@ QbsApp { Properties { condition: qbs.targetOS.contains("macos") cpp.frameworks: ["ApplicationServices", "Cocoa"] + bundle.isBundle: false } Properties { -- cgit v1.2.3