summaryrefslogtreecommitdiffstats
path: root/tests/data/wixl/IncludeTest.wxs
blob: ea1832abe3968cfbcfee5b53f1757d1b633ba2fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?xml version='1.0' encoding='windows-1252'?>
<Wix xmlns='http://schemas.microsoft.com/wix/2006/wi'>
  <?ifdef var.Foo?>
    <?warning Foo?>
    <?undef Foo?>
    <?ifdef var.Foo?>
      <?error Foo?>
    <?endif?>
  <?else?>
    <?ifdef var.Bar?>
      <?warning Bar?>
    <?else?>
      <?include IncludeWarn.wxi ?>
    <?endif?>
  <?endif?>
</Wix>