add basic wix template

This commit is contained in:
tensor-programming 2019-07-28 14:41:50 -04:00
parent 6018de2f30
commit 2664bfb22b
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
<?if $(sys.BUILDARCH)="x86"?>
<?define Win64 = "no" ?>
<?define PlatformProgramFilesFolder = "ProgramFilesFolder" ?>
<?elseif $(sys.BUILDARCH)="x64"?>
<?define Win64 = "yes" ?>
<?define PlatformProgramFilesFolder = "ProgramFiles64Folder" ?>
<?else?>
<?error Unsupported value of sys.BUILDARCH=$(sys.BUILDARCH)?>
<?endif?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
</Wix>