added wix file for gui installation

This commit is contained in:
Daniel Marjamäki 2009-09-23 21:14:05 +02:00
parent 6ee5399a5d
commit 46fabfd654
1 changed files with 66 additions and 0 deletions

66
win_installer/gui.wxs Executable file
View File

@ -0,0 +1,66 @@
<?xml version='1.0' encoding='windows-1252'?>
<?define ProductName = "Cppcheck 1.37" ?>
<?define ProductVersion = "1.37" ?>
<Wix xmlns='http://schemas.microsoft.com/wix/2006/wi'>
<Product Name='$(var.ProductName)' Id='88DE59C3-7640-47A2-A047-7289807AE3BA' UpgradeCode='DDB850E4-F8DE-4290-BDF1-AC12475DEE80'
Language='1033' Codepage='1252' Version='$(var.ProductVersion)' Manufacturer='The Cppcheck team'>
<Package Id='*' Keywords='Installer' Description="$(var.ProductName) Setup"
Comments='Cppcheck is a tool for static analysis of C/C++ code' Manufacturer='The Cppcheck team'
InstallerVersion='100' Languages='1033' Compressed='yes' SummaryCodepage='1252' />
<Media Id='1' Cabinet='Cppcheck.cab' EmbedCab='yes' DiskPrompt='CD-ROM 1' />
<Property Id='DiskPrompt' Value='Cppcheck installation [1]' />
<Directory Id='TARGETDIR' Name='SourceDir'>
<Directory Id='ProgramFilesFolder' Name='PFiles'>
<Directory Id='INSTALLDIR' Name='$(var.ProductName)'>
<Component Id='CliExecutable' Guid='E1435616-5041-4079-BC4B-C4805BEEDAF9'>
<File Id='cppcheckexe' Name='cppcheck.exe' DiskId='1' Source='cppcheck.exe' KeyPath='yes' />
</Component>
<Component Id='GuiExecutable' DiskId='1' Guid='8BCF2A91-9627-4A07-8BA4-D4EAC770006E'>
<File Id='guiexe' Name='gui.exe' Source='gui.exe' KeyPath='yes'>
<Shortcut Id='startmenuGui' Directory="ProgramMenuDir" Name="Cppcheck"
WorkingDirectory='INSTALLDIR' Icon="gui.exe" IconIndex="0" Advertise="yes" />
</File>
<File Id='mingwm10dll' Name='mingwm10.dll' Source='mingwm10.dll' />
<File Id='qtcore4dll' Name='qtcore4.dll' Source='qtcore4.dll' />
<File Id='qtgui4dll' Name='qtgui4.dll' Source='qtgui4.dll' />
<File Id='qtxml4dll' Name='qtxml4.dll' Source='qtxml4.dll' />
</Component>
<Component Id='Authors' Guid='DA54245B-7A5D-481B-A930-D2C9FDD95E19'>
<File Id='authorstxt' Name='authors.txt' DiskId='1' Source='..\authors' KeyPath='yes' />
</Component>
<Component Id='Readme' Guid='4C111DD0-A84A-11DE-8A39-0800200C9A66'>
<File Id='readmetxt' Name='readme.txt' DiskId='1' Source='..\readme.txt' KeyPath='yes' />
</Component>
</Directory>
</Directory>
<Directory Id='ProgramMenuFolder' Name='Programs' >
<Directory Id='ProgramMenuDir' Name='$(var.ProductName)'>
<Component Id='ProgramMenuDir' Guid='4F2DB093-50C5-4865-A316-2FBBB4BD8BD3'>
<RemoveFolder Id='ProgramMenuDir' On='uninstall' />
<RegistryValue Root='HKCU' Key='Software\Cppcheck\$(var.ProductName)' Type='string' Value='' KeyPath='yes' />
</Component>
</Directory>
</Directory>
</Directory>
<Feature Id='Complete' Title='$(var.ProductName)' Description='The complete package.'
Display='expand' Level='1' ConfigurableDirectory='INSTALLDIR' >
<Feature Id='MainProgram' Title='Command line interface' Description='Command line tool' Level='1'>
<ComponentRef Id='CliExecutable' />
<ComponentRef Id='GuiExecutable' />
<ComponentRef Id='Authors' />
<ComponentRef Id='Readme' />
<ComponentRef Id='ProgramMenuDir' />
</Feature>
</Feature>
<Property Id="WIXUI_INSTALLDIR" Value="INSTALLDIR" />
<UIRef Id="WixUI_InstallDir"/>
<Icon Id='gui.exe' SourceFile='gui.exe' />
</Product>
</Wix>