Skip to content

Commit

Permalink
Installer: Move couple of strings to productInfo.wxi.
Browse files Browse the repository at this point in the history
  • Loading branch information
kimmov committed Mar 15, 2010
1 parent 9d822c7 commit 636bcd8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions win_installer/cppcheck.wxs
Expand Up @@ -3,10 +3,10 @@
<?include productInfo.wxi ?>
<?include config.wxi ?>
<Product Name='$(var.ProductName)' Id='*' UpgradeCode='$(var.ProductUpgradeCode)'
Language='1033' Codepage='1252' Version='$(var.ProductVersion)' Manufacturer='The Cppcheck team'>
Language='1033' Codepage='1252' Version='$(var.ProductVersion)' Manufacturer='$(var.ProductManufacturer)'>

<Package Id='*' Keywords='Installer' Description="$(var.ProductName) Setup"
Comments='Cppcheck is a tool for static analysis of C/C++ code' Manufacturer='The Cppcheck team'
Comments='$(var.ProductDescription)' Manufacturer='$(var.ProductManufacturer)'
InstallerVersion='300' Languages='1033' Compressed='yes' SummaryCodepage='1252'/>

<Media Id='1' Cabinet='Cppcheck.cab' EmbedCab='yes' DiskPrompt='CD-ROM 1' />
Expand Down
5 changes: 4 additions & 1 deletion win_installer/productInfo.wxi
Expand Up @@ -3,9 +3,12 @@
<?define ProductName = "Cppcheck 1.42" ?>
<?define ProductNameShort = "Cppcheck" ?>
<?define ProductVersion = "1.42.0" ?>

<?define ProductManufacturer = "The Cppcheck team" ?>
<?define ProductDescription = "Cppcheck is a tool for static analysis of C/C++ code" ?>

<?define ProductGUID = "{7214EC4C-8F10-4E56-8E99-0B9908E68774}" ?>
<?define ProductUpgradeCode = "{7E94124C-1CD1-433F-9423-4614E52300DD}" ?>
<?define cppcheckGUID = "1c31dd76-07fa-4420-b9b5-5463742d6a48" ?>
<?define guiGUID = "4102893e-5237-4011-9d70-7d9067623372" ?>

</Include>

0 comments on commit 636bcd8

Please sign in to comment.