Installer: Move installer configuration to new file.

This commit is contained in:
Kimmo Varis 2010-01-17 20:18:52 +02:00
parent f3e25a5244
commit f02d00824d
3 changed files with 12 additions and 8 deletions

11
win_installer/config.wxi Normal file
View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<Include>
<?ifndef Platform ?> <!-- if platform NOT defined -->
<?define Platform = "x86" ?>
<?endif ?>
<?define CliBuildDir = "..\cli\release" ?>
<?define GuiBuildDir = "..\gui\release" ?>
<?define QtDllDir = "..\..\runtimes" ?>
<?define CrtMergeModule = "$(env.CommonProgramFiles)\Merge Modules\Microsoft_VC90_CRT_x86.msm" ?>
</Include>

View File

@ -1,6 +1,7 @@
<?xml version='1.0' encoding='windows-1252'?>
<Wix xmlns='http://schemas.microsoft.com/wix/2006/wi'>
<?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'>

View File

@ -8,12 +8,4 @@
<?define cppcheckGUID = "1c31dd76-07fa-4420-b9b5-5463742d6a48" ?>
<?define guiGUID = "4102893e-5237-4011-9d70-7d9067623372" ?>
<?ifndef Platform ?> <!-- if platform NOT defined -->
<?define Platform = "x86" ?>
<?endif ?>
<?define CliBuildDir = "..\cli\release" ?>
<?define GuiBuildDir = "..\gui\release" ?>
<?define QtDllDir = "..\..\runtimes" ?>
<?define CrtMergeModule = "$(env.CommonProgramFiles)\Merge Modules\Microsoft_VC90_CRT_x86.msm" ?>
</Include>