aboutsummaryrefslogtreecommitdiffstats
path: root/share
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@digia.com>2014-05-21 16:47:53 +0200
committerJoerg Bornemann <joerg.bornemann@digia.com>2014-05-22 14:45:48 +0200
commitdaea3b190273aceab72c9c06616da92ae28d3393 (patch)
treeea60038f76795b7b84b8ef66e5a44f50a6f044b1 /share
parent3eec1658c16fab1057a4cab0e0ef668fdc017f86 (diff)
add product name to OS X command descriptions
Change-Id: I52c8f64f65ef6cb07719c854c46d49202fbca34a Reviewed-by: Christian Kandeler <christian.kandeler@digia.com> Reviewed-by: Jake Petroules <jake.petroules@petroules.com>
Diffstat (limited to 'share')
-rw-r--r--share/qbs/modules/cpp/DarwinGCC.qbs6
1 files changed, 3 insertions, 3 deletions
diff --git a/share/qbs/modules/cpp/DarwinGCC.qbs b/share/qbs/modules/cpp/DarwinGCC.qbs
index fc496a1bb..b54c7ee63 100644
--- a/share/qbs/modules/cpp/DarwinGCC.qbs
+++ b/share/qbs/modules/cpp/DarwinGCC.qbs
@@ -132,7 +132,7 @@ UnixGCC {
prepare: {
var cmd = new JavaScriptCommand();
- cmd.description = "generating PkgInfo";
+ cmd.description = "generating PkgInfo for " + product.name;
cmd.highlight = "codegen";
cmd.sourceCode = function() {
var infoPlist = BundleTools.infoPlistContents(inputs.infoplist[0].filePath);
@@ -164,7 +164,7 @@ UnixGCC {
prepare: {
var cmd = new JavaScriptCommand();
- cmd.description = "generating Info.plist";
+ cmd.description = "generating Info.plist for " + product.name;
cmd.highlight = "codegen";
cmd.infoPlistFile = ModUtils.moduleProperty(product, "infoPlistFile");
cmd.infoPlist = ModUtils.moduleProperty(product, "infoPlist") || {};
@@ -327,7 +327,7 @@ UnixGCC {
"--out=" + outputs.application_dsym[0].filePath,
input.filePath
]);
- cmd.description = "generating dsym";
+ cmd.description = "generating dsym for " + product.name;
cmd.highlight = "codegen";
return cmd;
}