summaryrefslogtreecommitdiffstats
path: root/tests/data/wixl/arch-condition.wxs
blob: c87000358364c5442c028e4f85143fdf8ae6f293 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?xml version='1.0' encoding='windows-1252'?>
<Wix xmlns='http://schemas.microsoft.com/wix/2006/wi'>
  <?if $(var.Arch) = x64 ?>
    <?define ArchString = "(64 bit)" ?>
    <?define Win64 = "yes" ?>
    <?define ProgramFilesFolder = "ProgramFiles64Folder" ?>
  <?else ?>
    <?define ArchString = "" ?>
    <?define Win64 = "no" ?>
    <?define ProgramFilesFolder = "ProgramFilesFolder" ?>
  <?endif ?>
  <?warning $(var.Win64)?>
</Wix>