aboutsummaryrefslogtreecommitdiffstats
path: root/share/qbs/modules/cpp/ios-gcc.qbs
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@digia.com>2014-07-14 17:04:30 +0200
committerJoerg Bornemann <joerg.bornemann@digia.com>2014-07-16 11:56:44 +0200
commitf7973489aef74b1df55f7466cd176e14bbfa76d0 (patch)
treeb9be29a1a857082768a341a87081affdfd99cf36 /share/qbs/modules/cpp/ios-gcc.qbs
parenta623153d2b1af3490bab8885f0b3b768511cb42f (diff)
deprecate Artifact.fileName in favor of Artifact.filePath
This property is actually a file path, not a mere name. Task-number: QBS-579 Change-Id: I04e8f03eac97b5f86fe743a4923888a3d2a82c5d Reviewed-by: Joerg Bornemann <joerg.bornemann@digia.com>
Diffstat (limited to 'share/qbs/modules/cpp/ios-gcc.qbs')
-rw-r--r--share/qbs/modules/cpp/ios-gcc.qbs4
1 files changed, 2 insertions, 2 deletions
diff --git a/share/qbs/modules/cpp/ios-gcc.qbs b/share/qbs/modules/cpp/ios-gcc.qbs
index aeb1ad767..dced87c27 100644
--- a/share/qbs/modules/cpp/ios-gcc.qbs
+++ b/share/qbs/modules/cpp/ios-gcc.qbs
@@ -24,7 +24,7 @@ DarwinGCC {
inputs: ["qbs"]
Artifact {
- fileName: product.destinationDirectory + "/"
+ filePath: product.destinationDirectory + "/"
+ BundleTools.contentsFolderPath(product)
+ "/ResourceRules.plist"
fileTags: ["resourcerules"]
@@ -48,7 +48,7 @@ DarwinGCC {
inputs: ["application", "infoplist", "pkginfo", "resourcerules", "compiled_nib"]
Artifact {
- fileName: product.destinationDirectory + "/" + product.targetName + ".ipa"
+ filePath: product.destinationDirectory + "/" + product.targetName + ".ipa"
fileTags: ["ipa"]
}