summaryrefslogtreecommitdiff
path: root/os/windows/install.wxs
diff options
context:
space:
mode:
authorJens Axboe <jaxboe@fusionio.com>2011-01-10 20:40:47 +0100
committerJens Axboe <jaxboe@fusionio.com>2011-01-10 20:40:47 +0100
commit7ed4d7abf0d7720d532d9680ebf69745d9270a5e (patch)
treec31017c57224a0e1ff9d1be00be13bc99c085fce /os/windows/install.wxs
parent63a582671fe6db03f0a0be81843f2b72bbc8ab33 (diff)
parent8bad3c5b15c221cbd141a357d8ba81ca4cc45cac (diff)
downloadfio-7ed4d7abf0d7720d532d9680ebf69745d9270a5e.tar.gz
fio-7ed4d7abf0d7720d532d9680ebf69745d9270a5e.tar.bz2
Merge branch 'winfio'
Diffstat (limited to 'os/windows/install.wxs')
-rwxr-xr-xos/windows/install.wxs161
1 files changed, 78 insertions, 83 deletions
diff --git a/os/windows/install.wxs b/os/windows/install.wxs
index f70d8fac..6ab6ffe0 100755
--- a/os/windows/install.wxs
+++ b/os/windows/install.wxs
@@ -1,100 +1,95 @@
<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
- <?define VersionMajor = 1?>
- <?define VersionMinor = 44?>
- <?define VersionBuild = 3?>
-
+<?define VersionMajor = 1?>
+<?define VersionMinor = 44?>
+<?define VersionBuild = 3?>
+
<Product Id="*"
- Codepage="1252" Language="1033"
- Manufacturer="fio" Name="FIO"
- UpgradeCode="{2338a332-5511-43cf-b9bd-5c60496ccfcc}" Version="$(var.VersionMajor).$(var.VersionMinor).$(var.VersionBuild)">
+ Codepage="1252" Language="1033"
+ Manufacturer="fio" Name="FIO"
+ UpgradeCode="{2338a332-5511-43cf-b9bd-5c60496ccfcc}" Version="$(var.VersionMajor).$(var.VersionMinor).$(var.VersionBuild)">
<Package
- Comments="Contact: Your local administrator"
- Description="Flexible IO Tester"
- InstallerVersion="200" Keywords="Installer,MSI,Database"
- Languages="1033" Manufacturer="fio" Platform="x86"
- InstallScope="perMachine" InstallPrivileges="elevated" Compressed="yes"/>
+ Comments="Contact: Your local administrator"
+ Description="Flexible IO Tester"
+ InstallerVersion="200" Keywords="Installer,MSI,Database"
+ Languages="1033" Manufacturer="fio" Platform="x86"
+ InstallScope="perMachine" InstallPrivileges="elevated" Compressed="yes"/>
<Media Id="1" Cabinet="Product.cab" EmbedCab="yes" />
- <Directory Id="TARGETDIR" Name="SourceDir">
- <Directory Id="ProgramFilesFolder" SourceName="program files">
- <Directory Id="INSTALLDIR">
- <Directory Id="cygwin" Name="fio">
- <Directory Id="bin" Name="bin">
- <Component Id="fio.exe" Location="either">
- <File Id="fio.exe" Name="fio.exe" KeyPath="yes" Source="..\..\fio.exe"/>
- <Shortcut Id="FIO_SC" Name="FIO" Description="Opens an FIO shell" Directory="ApplicationProgramsFolder" Target="[cygwin]\Cygwin.bat"/>
- </Component>
- </Directory>
- <Directory Id="usr" Name="usr">
- <Directory Id="share" Name="share">
- <Directory Id="doc" Name="doc">
- <Directory Id="fio" Name="fio">
- <Directory Id="examples" Name="examples"/>
- <Component Id="README">
- <File Id="README" Name="README.txt" KeyPath="yes" Source="..\..\README"/>
- <Shortcut Id="README_SC" Name="Readme" Description="Documentation" Directory="ApplicationProgramsFolder" Target="[#README]"/>
- </Component>
- <Component Id="REPORTING_BUGS">
- <File Id="REPORTING_BUGS" Name="REPORTING-BUGS.txt" KeyPath="yes" Source="..\..\REPORTING-BUGS"/>
- <Shortcut Id="REPORTING_BUGS_SC" Name="Reporting bugs" Description="How to report bugs in FIO" Directory="ApplicationProgramsFolder" Target="[#REPORTING_BUGS]"/>
- </Component>
- <Component Id="HOWTO">
- <File Id="HOWTO" Name="HOWTO.txt" KeyPath="yes" Source="..\..\HOWTO"/>
- <Shortcut Id="HOWTO_SC" Name="How to use FIO" Description="FIO Tutorial - how to setup FIO" Directory="ApplicationProgramsFolder" Target="[#HOWTO]"/>
- </Component>
- <Component Id="COPYING">
- <File Id="COPYING" Name="COPYING.txt" KeyPath="yes" Source="..\..\COPYING"/>
- <Shortcut Id="COPYING_SC" Name="License" Description="FIO license" Directory="ApplicationProgramsFolder" Target="[#COPYING]"/>
- </Component>
- </Directory>
- </Directory>
- </Directory>
- </Directory>
- </Directory>
- </Directory>
- </Directory>
- <Directory Id="ProgramMenuFolder">
- <Directory Id="ApplicationProgramsFolder" Name="FIO">
- <Component Id="ShortcutDir" Guid="475862c2-ae75-4325-96c8-335edb490214">
- <RemoveFolder Id="ApplicationProgramsFolder" On="uninstall"/>
- <!-- <RegistryValue Root="HKLM" Key="Software\FIO\FIO" Name="shortcuts" Type="string" Value="" KeyPath="yes"/> -->
- </Component>
- </Directory>
- </Directory>
- </Directory>
+ <Directory Id="TARGETDIR" Name="SourceDir">
+ <Directory Id="ProgramFilesFolder" SourceName="program files">
+ <Directory Id="INSTALLDIR">
+ <Directory Id="cygwin" Name="FIO">
+ <Directory Id="bin" Name="bin">
+ <Component Id="fio.exe" Location="either">
+ <File Id="fio.exe" Name="fio.exe" KeyPath="yes" Source="..\..\fio.exe"/>
+ </Component>
+ </Directory>
+
+ <Component Id="fio.lnk" Location="either">
+ <File Id="fio.lnk" Name="FIO.lnk" KeyPath="yes" Source="FIO.lnk"/>
+ <Shortcut Id="FIO_SC" Name="FIO" Description="Opens an FIO shell" Directory="ApplicationProgramsFolder" Target="[cygwin]\FIO.lnk"/>
+ </Component>
- <Feature Id="AlwaysInstall" Absent="disallow" ConfigurableDirectory="INSTALLDIR" Display="hidden" Level="1" Title="Always Install">
- <ComponentRef Id="fio.exe" />
- <ComponentGroupRef Id="examples"/>
- <ComponentGroupRef Id="cygwin"/>
+ <Directory Id="examples" Name="examples"/>
+ <Component Id="README">
+ <File Id="README" Name="README.txt" KeyPath="yes" Source="..\..\README"/>
+ <Shortcut Id="README_SC" Name="Readme" Description="Documentation" Directory="ApplicationProgramsFolder" Target="[#README]"/>
+ </Component>
+ <Component Id="REPORTING_BUGS">
+ <File Id="REPORTING_BUGS" Name="REPORTING-BUGS.txt" KeyPath="yes" Source="..\..\REPORTING-BUGS"/>
+ <Shortcut Id="REPORTING_BUGS_SC" Name="Reporting bugs" Description="How to report bugs in FIO" Directory="ApplicationProgramsFolder" Target="[#REPORTING_BUGS]"/>
+ </Component>
+ <Component Id="HOWTO">
+ <File Id="HOWTO" Name="HOWTO.txt" KeyPath="yes" Source="..\..\HOWTO"/>
+ <Shortcut Id="HOWTO_SC" Name="How to use FIO" Description="FIO Tutorial - how to setup FIO" Directory="ApplicationProgramsFolder" Target="[#HOWTO]"/>
+ </Component>
+ <Component Id="COPYING">
+ <File Id="COPYING" Name="COPYING.txt" KeyPath="yes" Source="..\..\COPYING"/>
+ <Shortcut Id="COPYING_SC" Name="License" Description="FIO license" Directory="ApplicationProgramsFolder" Target="[#COPYING]"/>
+ </Component>
+ </Directory>
+ </Directory>
+ </Directory>
+ <Directory Id="ProgramMenuFolder">
+ <Directory Id="ApplicationProgramsFolder" Name="FIO">
+ <Component Id="ShortcutDir" Guid="475862c2-ae75-4325-96c8-335edb490214">
+ <RemoveFolder Id="ApplicationProgramsFolder" On="uninstall"/>
+ </Component>
+ </Directory>
+ </Directory>
+ </Directory>
- <ComponentRef Id="HOWTO"/>
- <ComponentRef Id="README"/>
- <ComponentRef Id="REPORTING_BUGS"/>
- <ComponentRef Id="COPYING"/>
+ <Feature Id="AlwaysInstall" Absent="disallow" ConfigurableDirectory="INSTALLDIR" Display="hidden" Level="1" Title="Always Install">
+ <ComponentRef Id="fio.exe" />
+ <ComponentRef Id="fio.lnk" />
+ <ComponentGroupRef Id="examples"/>
+ <ComponentGroupRef Id="cygwin"/>
- <ComponentRef Id="ShortcutDir"/>
- </Feature>
+ <ComponentRef Id="HOWTO"/>
+ <ComponentRef Id="README"/>
+ <ComponentRef Id="REPORTING_BUGS"/>
+ <ComponentRef Id="COPYING"/>
- <!-- <Property Id="ARPPRODUCTICON" Value="ARPPRODUCTICON" /> -->
+ <ComponentRef Id="ShortcutDir"/>
+ </Feature>
- <Property Id="ARPURLINFOABOUT" Value="http://git.kernel.dk/?p=fio.git" />
- <Property Id='ARPCONTACT'>fio@vger.kernel.org</Property>
- <Property Id='ARPHELPLINK'>http://www.spinics.net/lists/fio/</Property>
- <Property Id='ARPURLUPDATEINFO'>http://git.kernel.dk/?p=fio.git</Property>
+ <Property Id="ARPURLINFOABOUT" Value="http://git.kernel.dk/?p=fio.git" />
+ <Property Id='ARPCONTACT'>fio@vger.kernel.org</Property>
+ <Property Id='ARPHELPLINK'>http://www.spinics.net/lists/fio/</Property>
+ <Property Id='ARPURLUPDATEINFO'>http://git.kernel.dk/?p=fio.git</Property>
- <WixVariable Id="WixUILicenseRtf" Value="eula.rtf" />
+ <WixVariable Id="WixUILicenseRtf" Value="eula.rtf" />
- <UIRef Id="WixUI_Minimal"/>
+ <UIRef Id="WixUI_Minimal"/>
- <Condition Message="Per-User installations are not supported">
- Installed OR
- ALLUSERS=1
- </Condition>
+ <Condition Message="Per-User installations are not supported">
+ Installed OR
+ ALLUSERS=1
+ </Condition>
- <MajorUpgrade AllowDowngrades="no" DowngradeErrorMessage="A newer version of the application is already installed."/>
- </Product>
-</Wix> \ No newline at end of file
+ <MajorUpgrade AllowDowngrades="no" DowngradeErrorMessage="A newer version of the application is already installed."/>
+</Product>
+</Wix>