summaryrefslogtreecommitdiffstats
path: root/src/windows/installer/wix/kfw.wxs
diff options
context:
space:
mode:
Diffstat (limited to 'src/windows/installer/wix/kfw.wxs')
-rw-r--r--src/windows/installer/wix/kfw.wxs10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/windows/installer/wix/kfw.wxs b/src/windows/installer/wix/kfw.wxs
index 02bfb68982..c01d1bfe59 100644
--- a/src/windows/installer/wix/kfw.wxs
+++ b/src/windows/installer/wix/kfw.wxs
@@ -46,10 +46,11 @@
Description="$(var.ProductName)"
Comments="$(var.ProductFullName)"
Manufacturer="$(loc.Manufacturer)"
- InstallerVersion="110"
+ InstallerVersion="$(var.InstallerVersion)"
Languages="$(var.Language)"
Compressed="yes"
- SummaryCodepage="$(var.CodePage)"
+ SummaryCodepage="$(var.CodePage)"
+ Platforms="$(var.Platform)"
/>
<?include lang\ui_$(var.BuildLang).wxi?>
@@ -62,6 +63,11 @@
<Condition Message="$(loc.OsVersionRequired)">VersionNT &gt;= 500</Condition>
<Condition Message="$(loc.CMNotSelected)">USELEASH Or USENETIDMGR</Condition>
<Condition Message="$(loc.CMDupSelected)">Not (USELEASH And USENETIDMGR)</Condition>
+ <?if $(var.Platform) = "x64" ?>
+ <Condition Message="$(loc.StrPlatform64)">
+ <![CDATA[VersionNT64]]>
+ </Condition>
+ <?endif?>
<!-- Custom actions -->
<Binary Id="binCustom" src="custom\custom.dll" />