aboutsummaryrefslogtreecommitdiffstats
path: root/share/qbs/modules/bundle/BundleModule.qbs
diff options
context:
space:
mode:
Diffstat (limited to 'share/qbs/modules/bundle/BundleModule.qbs')
-rw-r--r--share/qbs/modules/bundle/BundleModule.qbs9
1 files changed, 0 insertions, 9 deletions
diff --git a/share/qbs/modules/bundle/BundleModule.qbs b/share/qbs/modules/bundle/BundleModule.qbs
index 0a0ecc6e3..a7332a4ea 100644
--- a/share/qbs/modules/bundle/BundleModule.qbs
+++ b/share/qbs/modules/bundle/BundleModule.qbs
@@ -289,10 +289,6 @@ Module {
cmd.qmakeEnv = ModUtils.moduleProperty(product, "qmakeEnv");
cmd.buildEnv = product.moduleProperty("cpp", "buildEnv");
- cmd.defines = product.moduleProperty("cpp", "defines");
- cmd.platformDefines = product.moduleProperty("cpp", "platformDefines");
- cmd.compilerDefines = product.moduleProperty("cpp", "compilerDefines");
- cmd.allDefines = [].concat(cmd.defines || []).concat(cmd.platformDefines || []).concat(cmd.compilerDefines || []);
cmd.developerPath = product.moduleProperty("xcode", "developerPath");
cmd.platformInfoPlist = product.moduleProperty("xcode", "platformInfoPlist");
@@ -395,11 +391,6 @@ Module {
for (key in qmakeEnv)
env[key] = qmakeEnv[key];
- for (i = 0; i < allDefines.length; ++i) {
- var parts = allDefines[i].split('=');
- env[parts[0]] = parts[1];
- }
-
DarwinTools.expandPlistEnvironmentVariables(aggregatePlist, env, true);
// Add keys from partial Info.plists from asset catalogs, XIBs, and storyboards