mirror of
https://github.com/winfsp/winfsp.git
synced 2025-04-25 01:42:24 -05:00
100 lines
4.6 KiB
XML
100 lines
4.6 KiB
XML
<?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="perMachine" Description="WinFsp - Windows File System Proxy" />
|
|
<MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." />
|
|
<Media Id="1" Cabinet="WinFsp.cab" EmbedCab="yes" />
|
|
<Directory Id="TARGETDIR" Name="SourceDir">
|
|
<Directory Id="ProgramFilesFolder">
|
|
<Directory Id="INSTALLDIR" Name="WinFsp">
|
|
<Directory Id="BINDIR" Name="bin" />
|
|
<Directory Id="INCDIR" Name="inc" />
|
|
<Directory Id="LIBDIR" Name="lib" />
|
|
<Directory Id="SMPDIR" Name="samples" />
|
|
</Directory>
|
|
</Directory>
|
|
</Directory>
|
|
<DirectoryRef Id="BINDIR" FileSource="..\build\$(var.Configuration)">
|
|
<Component Id="C.winfsp_x64.sys">
|
|
<File Name="winfsp-x64.sys" KeyPath="yes" />
|
|
</Component>
|
|
<Component Id="C.winfsp_x86.sys">
|
|
<File Name="winfsp-x86.sys" KeyPath="yes" />
|
|
</Component>
|
|
<Component Id="C.winfsp_x64.dll">
|
|
<File Name="winfsp-x64.dll" KeyPath="yes" />
|
|
</Component>
|
|
<Component Id="C.winfsp_x86.dll">
|
|
<File Name="winfsp-x86.dll" KeyPath="yes" />
|
|
</Component>
|
|
<Component Id="C.memfs_x64.exe">
|
|
<File Name="memfs-x64.exe" KeyPath="yes" />
|
|
</Component>
|
|
<Component Id="C.memfs_x86.exe">
|
|
<File Name="memfs-x86.exe" KeyPath="yes" />
|
|
</Component>
|
|
</DirectoryRef>
|
|
<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="..\build\$(var.Configuration)">
|
|
<Component Id="C.winfsp_x64.lib">
|
|
<File Name="winfsp-x64.lib" KeyPath="yes" />
|
|
</Component>
|
|
<Component Id="C.winfsp_x86.lib">
|
|
<File Name="winfsp-x86.lib" KeyPath="yes" />
|
|
</Component>
|
|
</DirectoryRef>
|
|
<DirectoryRef Id="SMPDIR" FileSource="..\..\..\tst">
|
|
<Directory Id="SMPDIR.memfs" Name="memfs">
|
|
<Component Id="C.memfs.h">
|
|
<File Name="memfs.h" KeyPath="yes" />
|
|
</Component>
|
|
<Component Id="C.memfs.cpp">
|
|
<File Name="memfs.cpp" KeyPath="yes" />
|
|
</Component>
|
|
<Component Id="C.memfs_main.c">
|
|
<File Name="memfs-main.c" KeyPath="yes" />
|
|
</Component>
|
|
</Directory>
|
|
</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.memfs_x64.exe" />
|
|
<ComponentRef Id="C.memfs_x86.exe" />
|
|
</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" />
|
|
</ComponentGroup>
|
|
<ComponentGroup Id="C.WinFsp.smp">
|
|
<ComponentRef Id="C.memfs.h" />
|
|
<ComponentRef Id="C.memfs.cpp" />
|
|
<ComponentRef Id="C.memfs_main.c" />
|
|
</ComponentGroup>
|
|
<Feature Id="F.User" Level="1" Title="User">
|
|
<ComponentGroupRef Id="C.WinFsp.bin" />
|
|
</Feature>
|
|
<Feature Id="F.Developer" Level="1" Title="Developer">
|
|
<ComponentGroupRef Id="C.WinFsp.bin" />
|
|
<ComponentGroupRef Id="C.WinFsp.inc" />
|
|
<ComponentGroupRef Id="C.WinFsp.lib" />
|
|
<ComponentGroupRef Id="C.WinFsp.smp" />
|
|
</Feature>
|
|
<UI />
|
|
</Product>
|
|
</Wix> |