mirror of
https://github.com/winfsp/winfsp.git
synced 2025-04-22 16:33:02 -05:00
install: winfsp.wixproj
This commit is contained in:
parent
e0dde7349e
commit
1176114528
@ -1,7 +1,7 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
|
<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">
|
<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" />
|
<Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine" />
|
||||||
<MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
|
<MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
|
||||||
<Media Id="1" Cabinet="WinFsp.cab" EmbedCab="yes" />
|
<Media Id="1" Cabinet="WinFsp.cab" EmbedCab="yes" />
|
||||||
<Directory Id="TARGETDIR" Name="SourceDir">
|
<Directory Id="TARGETDIR" Name="SourceDir">
|
||||||
@ -14,48 +14,50 @@
|
|||||||
</Directory>
|
</Directory>
|
||||||
</Directory>
|
</Directory>
|
||||||
<DirectoryRef Id="BINDIR" FileSource="..\build\Release">
|
<DirectoryRef Id="BINDIR" FileSource="..\build\Release">
|
||||||
<Component Id="C.winfsp-x64.sys">
|
<Component Id="C.winfsp_x64.sys">
|
||||||
<File Source="winfsp-x64.sys" KeyPath="yes" />
|
<File Name="winfsp-x64.sys" KeyPath="yes" />
|
||||||
</Component>
|
</Component>
|
||||||
<Component Id="C.winfsp-x86.sys">
|
<Component Id="C.winfsp_x86.sys">
|
||||||
<File Source="winfsp-x86.sys" KeyPath="yes" />
|
<File Name="winfsp-x86.sys" KeyPath="yes" />
|
||||||
</Component>
|
</Component>
|
||||||
<Component Id="C.winfsp-x64.dll">
|
<Component Id="C.winfsp_x64.dll">
|
||||||
<File Source="winfsp-x64.dll" KeyPath="yes" />
|
<File Name="winfsp-x64.dll" KeyPath="yes" />
|
||||||
</Component>
|
</Component>
|
||||||
<Component Id="C.winfsp-x86.dll">
|
<Component Id="C.winfsp_x86.dll">
|
||||||
<File Source="winfsp-x86.dll" KeyPath="yes" />
|
<File Name="winfsp-x86.dll" KeyPath="yes" />
|
||||||
</Component>
|
</Component>
|
||||||
</DirectoryRef>
|
</DirectoryRef>
|
||||||
<DirectoryRef Id="INCDIR" FileSource="..\..\inc">
|
<DirectoryRef Id="INCDIR" FileSource="..\..\..\inc">
|
||||||
<Component Id="C.fsctl.h" Directory="winfsp">
|
<Directory Id="INCDIR.winfsp" Name="winfsp">
|
||||||
<File Source="fsctl.h" KeyPath="yes" />
|
<Component Id="C.fsctl.h">
|
||||||
|
<File Name="fsctl.h" KeyPath="yes" />
|
||||||
</Component>
|
</Component>
|
||||||
<Component Id="C.winfsp.h" Directory="winfsp">
|
<Component Id="C.winfsp.h">
|
||||||
<File Source="winfsp.h" KeyPath="yes" />
|
<File Name="winfsp.h" KeyPath="yes" />
|
||||||
</Component>
|
</Component>
|
||||||
|
</Directory>
|
||||||
</DirectoryRef>
|
</DirectoryRef>
|
||||||
<DirectoryRef Id="LIBDIR" FileSource="..\..\Release">
|
<DirectoryRef Id="LIBDIR" FileSource="..\build\Release">
|
||||||
<Component Id="C.fsctl.h" Directory="winfsp">
|
<Component Id="C.winfsp_x64.lib">
|
||||||
<File Source="fsctl.h" KeyPath="yes" />
|
<File Name="winfsp-x64.lib" KeyPath="yes" />
|
||||||
</Component>
|
</Component>
|
||||||
<Component Id="C.winfsp.h" Directory="winfsp">
|
<Component Id="C.winfsp_x86.lib">
|
||||||
<File Source="winfsp.h" KeyPath="yes" />
|
<File Name="winfsp-x86.lib" KeyPath="yes" />
|
||||||
</Component>
|
</Component>
|
||||||
</DirectoryRef>
|
</DirectoryRef>
|
||||||
<ComponentGroup Id="C.WinFsp.bin">
|
<ComponentGroup Id="C.WinFsp.bin">
|
||||||
<ComponentRef Id="C.winfsp-x64.sys" />
|
<ComponentRef Id="C.winfsp_x64.sys" />
|
||||||
<ComponentRef Id="C.winfsp-x86.sys" />
|
<ComponentRef Id="C.winfsp_x86.sys" />
|
||||||
<ComponentRef Id="C.winfsp-x64.dll" />
|
<ComponentRef Id="C.winfsp_x64.dll" />
|
||||||
<ComponentRef Id="C.winfsp-x86.dll" />
|
<ComponentRef Id="C.winfsp_x86.dll" />
|
||||||
</ComponentGroup>
|
</ComponentGroup>
|
||||||
<ComponentGroup Id="C.WinFsp.inc">
|
<ComponentGroup Id="C.WinFsp.inc">
|
||||||
<ComponentRef Id="C.fsctl.h" />
|
<ComponentRef Id="C.fsctl.h" />
|
||||||
<ComponentRef Id="C.winfsp.h" />
|
<ComponentRef Id="C.winfsp.h" />
|
||||||
</ComponentGroup>
|
</ComponentGroup>
|
||||||
<ComponentGroup Id="C.WinFsp.lib">
|
<ComponentGroup Id="C.WinFsp.lib">
|
||||||
<ComponentRef Id="C.winfsp-x64.lib" />
|
<ComponentRef Id="C.winfsp_x64.lib" />
|
||||||
<ComponentRef Id="C.winfsp-x86.lib" />
|
<ComponentRef Id="C.winfsp_x86.lib" />
|
||||||
</ComponentGroup>
|
</ComponentGroup>
|
||||||
<Feature Id="F.User" Level="1" Title="User">
|
<Feature Id="F.User" Level="1" Title="User">
|
||||||
<ComponentGroupRef Id="C.WinFsp.bin" />
|
<ComponentGroupRef Id="C.WinFsp.bin" />
|
||||||
|
@ -74,10 +74,8 @@ Global
|
|||||||
{AA7190E8-877F-4827-8CDD-E0D85F83C8C1}.Release|x86.Build.0 = Release|Win32
|
{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|x64.ActiveCfg = Debug|x86
|
||||||
{D53AAC39-4C57-4CA5-A4F3-C2B24888C594}.Debug|x86.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|x64.ActiveCfg = Release|x86
|
||||||
{D53AAC39-4C57-4CA5-A4F3-C2B24888C594}.Release|x86.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
|
EndGlobalSection
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
HideSolutionNode = FALSE
|
HideSolutionNode = FALSE
|
||||||
|
Loading…
x
Reference in New Issue
Block a user