aboutsummaryrefslogtreecommitdiffstats
path: root/share/qbs/modules/bundle/BundleModule.qbs
diff options
context:
space:
mode:
authorJake Petroules <jake.petroules@theqtcompany.com>2016-03-24 17:27:03 -0700
committerJake Petroules <jake.petroules@theqtcompany.com>2016-03-25 20:48:19 +0000
commit044c8607320e1dfcf0b984721334906a475f8415 (patch)
tree95aacfaaeb9610c2ce4693a0d9617106cd31af4d /share/qbs/modules/bundle/BundleModule.qbs
parent26b53ffbe8e4ca98c1b549b6b502418dc6a4b1d4 (diff)
Introduce Array.containsAll and Array.containsAny.
Use where appropriate. Change-Id: Iaade46eab682e32d490dc718ec637930f4611c6c Reviewed-by: Christian Kandeler <christian.kandeler@theqtcompany.com>
Diffstat (limited to 'share/qbs/modules/bundle/BundleModule.qbs')
-rw-r--r--share/qbs/modules/bundle/BundleModule.qbs10
1 files changed, 4 insertions, 6 deletions
diff --git a/share/qbs/modules/bundle/BundleModule.qbs b/share/qbs/modules/bundle/BundleModule.qbs
index ff0b67441..08c473356 100644
--- a/share/qbs/modules/bundle/BundleModule.qbs
+++ b/share/qbs/modules/bundle/BundleModule.qbs
@@ -81,11 +81,9 @@ Module {
additionalProductTypes: ["bundle"]
- property bool isBundle: qbs.targetOS.contains("darwin")
- && (product.type.contains("application")
- || product.type.contains("dynamiclibrary")
- || product.type.contains("loadablemodule"))
- && !product.consoleApplication
+ property bool isBundle: !product.consoleApplication && qbs.targetOS.contains("darwin") &&
+ product.type.containsAny(["application", "dynamiclibrary", "loadablemodule"])
+
readonly property bool isShallow: bundleSettingsProbe.xcodeSettings["SHALLOW_BUNDLE"] === "YES"
property string identifierPrefix: "org.example"
@@ -100,7 +98,7 @@ Module {
return "XPC!";
if (product.type.contains("application"))
return "APPL";
- if (product.type.contains("dynamiclibrary") || product.type.contains("staticlibrary"))
+ if (product.type.containsAny(["dynamiclibrary", "staticlibrary"]))
return "FMWK";
if (product.type.contains("kernelmodule"))
return "KEXT";