install: winfsp.wixproj

This commit is contained in:
Bill Zissimopoulos 2016-04-28 15:55:05 -07:00
parent e0dde7349e
commit 1176114528
2 changed files with 30 additions and 30 deletions

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Product Id="*" Name="WinFsp" Language="1033" Version="0.9.0" Manufacturer="Navimatics Corporation" UpgradeCode="82f812d9-4083-4ef1-8bc8-0f1eda05b46b">
<Package InstallerVersion="200" Compressed="yes" InstallScope="perUser" InstallPrivileges="elevated" />
<Product Id="*" Name="WinFsp" Language="1033" Version="0.9.0" Manufacturer="Navimatics Corporation" UpgradeCode="82F812D9-4083-4EF1-8BC8-0F1EDA05B46B">
<Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" />
<MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
<Media Id="1" Cabinet="WinFsp.cab" EmbedCab="yes" />
<Directory Id="TARGETDIR" Name="SourceDir">
@ -14,48 +14,50 @@
</Directory>
</Directory>
<DirectoryRef Id="BINDIR" FileSource="..\build\Release">
<Component Id="C.winfsp-x64.sys">
<File Source="winfsp-x64.sys" KeyPath="yes" />
<Component Id="C.winfsp_x64.sys">
<File Name="winfsp-x64.sys" KeyPath="yes" />
</Component>
<Component Id="C.winfsp-x86.sys">
<File Source="winfsp-x86.sys" KeyPath="yes" />
<Component Id="C.winfsp_x86.sys">
<File Name="winfsp-x86.sys" KeyPath="yes" />
</Component>
<Component Id="C.winfsp-x64.dll">
<File Source="winfsp-x64.dll" KeyPath="yes" />
<Component Id="C.winfsp_x64.dll">
<File Name="winfsp-x64.dll" KeyPath="yes" />
</Component>
<Component Id="C.winfsp-x86.dll">
<File Source="winfsp-x86.dll" KeyPath="yes" />
<Component Id="C.winfsp_x86.dll">
<File Name="winfsp-x86.dll" KeyPath="yes" />
</Component>
</DirectoryRef>
<DirectoryRef Id="INCDIR" FileSource="..\..\inc">
<Component Id="C.fsctl.h" Directory="winfsp">
<File Source="fsctl.h" KeyPath="yes" />
</Component>
<Component Id="C.winfsp.h" Directory="winfsp">
<File Source="winfsp.h" KeyPath="yes" />
</Component>
<DirectoryRef Id="INCDIR" FileSource="..\..\..\inc">
<Directory Id="INCDIR.winfsp" Name="winfsp">
<Component Id="C.fsctl.h">
<File Name="fsctl.h" KeyPath="yes" />
</Component>
<Component Id="C.winfsp.h">
<File Name="winfsp.h" KeyPath="yes" />
</Component>
</Directory>
</DirectoryRef>
<DirectoryRef Id="LIBDIR" FileSource="..\..\Release">
<Component Id="C.fsctl.h" Directory="winfsp">
<File Source="fsctl.h" KeyPath="yes" />
<DirectoryRef Id="LIBDIR" FileSource="..\build\Release">
<Component Id="C.winfsp_x64.lib">
<File Name="winfsp-x64.lib" KeyPath="yes" />
</Component>
<Component Id="C.winfsp.h" Directory="winfsp">
<File Source="winfsp.h" KeyPath="yes" />
<Component Id="C.winfsp_x86.lib">
<File Name="winfsp-x86.lib" KeyPath="yes" />
</Component>
</DirectoryRef>
<ComponentGroup Id="C.WinFsp.bin">
<ComponentRef Id="C.winfsp-x64.sys" />
<ComponentRef Id="C.winfsp-x86.sys" />
<ComponentRef Id="C.winfsp-x64.dll" />
<ComponentRef Id="C.winfsp-x86.dll" />
<ComponentRef Id="C.winfsp_x64.sys" />
<ComponentRef Id="C.winfsp_x86.sys" />
<ComponentRef Id="C.winfsp_x64.dll" />
<ComponentRef Id="C.winfsp_x86.dll" />
</ComponentGroup>
<ComponentGroup Id="C.WinFsp.inc">
<ComponentRef Id="C.fsctl.h" />
<ComponentRef Id="C.winfsp.h" />
</ComponentGroup>
<ComponentGroup Id="C.WinFsp.lib">
<ComponentRef Id="C.winfsp-x64.lib" />
<ComponentRef Id="C.winfsp-x86.lib" />
<ComponentRef Id="C.winfsp_x64.lib" />
<ComponentRef Id="C.winfsp_x86.lib" />
</ComponentGroup>
<Feature Id="F.User" Level="1" Title="User">
<ComponentGroupRef Id="C.WinFsp.bin" />

View File

@ -74,10 +74,8 @@ Global
{AA7190E8-877F-4827-8CDD-E0D85F83C8C1}.Release|x86.Build.0 = Release|Win32
{D53AAC39-4C57-4CA5-A4F3-C2B24888C594}.Debug|x64.ActiveCfg = Debug|x86
{D53AAC39-4C57-4CA5-A4F3-C2B24888C594}.Debug|x86.ActiveCfg = Debug|x86
{D53AAC39-4C57-4CA5-A4F3-C2B24888C594}.Debug|x86.Build.0 = Debug|x86
{D53AAC39-4C57-4CA5-A4F3-C2B24888C594}.Release|x64.ActiveCfg = Release|x86
{D53AAC39-4C57-4CA5-A4F3-C2B24888C594}.Release|x86.ActiveCfg = Release|x86
{D53AAC39-4C57-4CA5-A4F3-C2B24888C594}.Release|x86.Build.0 = Release|x86
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE