diff options
author | Jake Petroules <jake.petroules@petroules.com> | 2015-06-09 23:48:35 -0700 |
---|---|---|
committer | Jake Petroules <jake.petroules@petroules.com> | 2015-07-29 19:17:07 +0000 |
commit | e8963d2a2ff314355ec6a44df2647eb84eda634f (patch) | |
tree | bba83ecbc2583f9656eafa5ad192fc27f1375a16 /share/qbs/modules/bundle/BundleModule.qbs | |
parent | c50827bf53e3863adcfd8c0e38aa5b7773eb075f (diff) | |
download | qbs-e8963d2a2ff314355ec6a44df2647eb84eda634f.tar.gz |
Introduce Xcode module.
Change-Id: I3d338b1f3a41bb4c19e0c3c213139e09493ae10b
Reviewed-by: Christian Kandeler <christian.kandeler@theqtcompany.com>
Diffstat (limited to 'share/qbs/modules/bundle/BundleModule.qbs')
-rw-r--r-- | share/qbs/modules/bundle/BundleModule.qbs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/share/qbs/modules/bundle/BundleModule.qbs b/share/qbs/modules/bundle/BundleModule.qbs index 8572208e1..c553946d8 100644 --- a/share/qbs/modules/bundle/BundleModule.qbs +++ b/share/qbs/modules/bundle/BundleModule.qbs @@ -211,7 +211,7 @@ Module { cmd.infoPlistFormat = ModUtils.moduleProperty(product, "infoPlistFormat"); cmd.qmakeEnv = ModUtils.moduleProperty(product, "qmakeEnv"); - cmd.platformPath = product.moduleProperty("cpp", "platformPath"); + cmd.platformPath = product.moduleProperty("xcode", "platformPath"); cmd.toolchainInstallPath = product.moduleProperty("cpp", "toolchainInstallPath"); cmd.buildEnv = product.moduleProperty("cpp", "buildEnv"); cmd.defines = product.moduleProperty("cpp", "defines"); @@ -219,9 +219,9 @@ Module { cmd.compilerDefines = product.moduleProperty("cpp", "compilerDefines"); cmd.allDefines = [].concat(cmd.defines || []).concat(cmd.platformDefines || []).concat(cmd.compilerDefines || []); - cmd.platformInfoPlist = product.moduleProperty("cpp", "platformInfoPlist"); - cmd.sdkSettingsPlist = product.moduleProperty("cpp", "sdkSettingsPlist"); - cmd.toolchainInfoPlist = product.moduleProperty("cpp", "toolchainInfoPlist"); + cmd.platformInfoPlist = product.moduleProperty("xcode", "platformInfoPlist"); + cmd.sdkSettingsPlist = product.moduleProperty("xcode", "sdkSettingsPlist"); + cmd.toolchainInfoPlist = product.moduleProperty("xcode", "toolchainInfoPlist"); cmd.sysroot = product.moduleProperty("qbs", "sysroot"); cmd.osBuildVersion = product.moduleProperty("qbs", "hostOSBuildVersion"); |