blob: 5b100956affae4db977d2bd0fa6f2e9b0440dca9 [file] [log] [blame]
Steve Dowerbb240872015-02-05 22:08:48 -08001<?xml version="1.0" encoding="UTF-8"?>
2<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
3 <Product Id="*" Language="!(loc.LCID)" Name="!(loc.Title)" Version="$(var.Version)" Manufacturer="!(loc.Manufacturer)" UpgradeCode="$(var.UpgradeCode)">
4 <Package InstallerVersion="300" Compressed="yes" InstallScope="perUser" Platform="$(var.Platform)" />
5 <MediaTemplate EmbedCab="yes" CompressionLevel="high" />
6
7 <PropertyRef Id="UpgradeTable" />
8
9 <?if $(var.Platform)~=x64 ?>
10 <?define DirName=System64?>
11 <?else ?>
12 <?define DirName=System?>
13 <?endif ?>
14 <DirectoryRef Id="TARGETDIR">
15 <Directory Id="$(var.DirName)Folder" Name="$(var.DirName)">
16 <Directory Id="SystemInstallDirectory" Name="." />
17 </Directory>
18 </DirectoryRef>
19 <?undef DirName ?>
20
21 <Feature Id="DefaultFeature" AllowAdvertise="no" Title="!(loc.Title)" Description="!(loc.Description)">
22 <ComponentGroupRef Id="crt_files" />
23 </Feature>
24 </Product>
25</Wix>
26