Installer: Move installer configuration to new file.
This commit is contained in:
parent
f3e25a5244
commit
f02d00824d
|
@ -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>
|
|
@ -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'>
|
||||
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue