aboutsummaryrefslogtreecommitdiffstats
path: root/share/qbs/modules/cpp/ios-gcc.qbs
diff options
context:
space:
mode:
authorJake Petroules <jake.petroules@petroules.com>2014-01-16 09:40:03 -0500
committerJoerg Bornemann <joerg.bornemann@digia.com>2014-01-17 10:47:42 +0100
commit0a27c8f3020b11134361cd5999b997ab838fe727 (patch)
tree00ea80916717592f03998a547a365caf4b412f36 /share/qbs/modules/cpp/ios-gcc.qbs
parent3aa9fdfcff9a9078fa3b2d1a53b559045f630b2d (diff)
Introduce xcodeSdkName and xcodeSdkVersion properties.
Change-Id: I6572b085c24cf8ba6d1a41dab267182cabe6aab8 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 875852bf6..122e3063c 100644
--- a/share/qbs/modules/cpp/ios-gcc.qbs
+++ b/share/qbs/modules/cpp/ios-gcc.qbs
@@ -64,8 +64,8 @@ DarwinGCC {
throw "The path to a provisioning profile must be set using " +
"cpp.provisioningProfile in order to build an IPA package.";
- var args = ["-sdk", "iphoneos", "PackageApplication", "-v",
- product.buildDirectory + "/" + BundleTools.wrapperName(product),
+ var args = ["-sdk", product.moduleProperty("cpp", "xcodeSdkName"), "PackageApplication",
+ "-v", product.buildDirectory + "/" + BundleTools.wrapperName(product),
"-o", outputs.ipa[0].fileName, "--sign", signingIdentity,
"--embed", provisioningProfile];