aboutsummaryrefslogtreecommitdiffstats
path: root/share/qbs/modules/cpp/ios-gcc.qbs
diff options
context:
space:
mode:
authorJake Petroules <jake.petroules@qt.io>2016-10-06 11:21:35 -0700
committerJake Petroules <jake.petroules@qt.io>2016-10-07 20:09:21 +0000
commit6a5250c89662ff7b289c23b30a7bece9410de130 (patch)
tree4bec39e89e89f3e14c9da55b26e982f7dd7e4e26 /share/qbs/modules/cpp/ios-gcc.qbs
parentefd0607b818d7c35ed668a8d7c0b0b7b2da7558d (diff)
Remove ResourceRules handling
These have been obsoleted by Apple, and breaks iOS builds in Xcode 8. https://developer.apple.com/library/mac/technotes/tn2206/_index.html Change-Id: I46a86ae80641d760c8f061b7f76769f8ff99d3db Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Diffstat (limited to 'share/qbs/modules/cpp/ios-gcc.qbs')
-rw-r--r--share/qbs/modules/cpp/ios-gcc.qbs24
1 files changed, 0 insertions, 24 deletions
diff --git a/share/qbs/modules/cpp/ios-gcc.qbs b/share/qbs/modules/cpp/ios-gcc.qbs
index 1ab6e8021..2ff4dc49c 100644
--- a/share/qbs/modules/cpp/ios-gcc.qbs
+++ b/share/qbs/modules/cpp/ios-gcc.qbs
@@ -62,30 +62,6 @@ DarwinGCC {
Rule {
condition: !product.moduleProperty("qbs", "targetOS").contains("ios-simulator")
- multiplex: true
- inputs: ["qbs"]
-
- Artifact {
- filePath: product.destinationDirectory + "/"
- + product.moduleProperty("bundle", "contentsFolderPath")
- + "/ResourceRules.plist"
- fileTags: ["resourcerules"]
- }
-
- prepare: {
- var cmd = new JavaScriptCommand();
- cmd.description = "generating ResourceRules";
- cmd.highlight = "codegen";
- cmd.sysroot = product.moduleProperty("qbs","sysroot");
- cmd.sourceCode = function() {
- File.copy(sysroot + "/ResourceRules.plist", outputs.resourcerules[0].filePath);
- }
- return cmd;
- }
- }
-
- Rule {
- condition: !product.moduleProperty("qbs", "targetOS").contains("ios-simulator")
inputsFromDependencies: ["bundle"]
Artifact {