Prepared WiX installer for x64 releases (#2068)

This commit is contained in:
PKEuS 2015-07-21 15:04:27 +02:00
parent 7ee4579c83
commit 860ea4fe48
3 changed files with 9 additions and 6 deletions

View File

@ -1,9 +1,5 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Include> <Include>
<?ifndef Platform ?> <!-- if platform NOT defined -->
<?define Platform = "x86" ?>
<?endif ?>
<?define CliBuildDir = "..\bin" ?> <?define CliBuildDir = "..\bin" ?>
<?define GuiBuildDir = "..\bin" ?> <?define GuiBuildDir = "..\bin" ?>
<?define TranslationsDir = "..\gui" ?> <?define TranslationsDir = "..\gui" ?>

View File

@ -14,7 +14,14 @@
<ProjectGuid>{3b772885-4980-4a76-8407-4dabf8f7757c}</ProjectGuid> <ProjectGuid>{3b772885-4980-4a76-8407-4dabf8f7757c}</ProjectGuid>
</PropertyGroup> </PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x64' ">
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x64' ">
</PropertyGroup>
<ItemGroup> <ItemGroup>
<WixExtension Include="WixUIExtension"> <WixExtension Include="WixUIExtension">
<Name>WixUIExtension</Name> <Name>WixUIExtension</Name>

View File

@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Include> <Include>
<?define ProductName = "Cppcheck 1.70 dev" ?> <?define ProductName = "Cppcheck $(var.Platform) 1.70 dev" ?>
<?define ProductNameShort = "Cppcheck" ?> <?define ProductNameShort = "Cppcheck" ?>
<?define ProductVersion = "1.69.99" ?> <?define ProductVersion = "1.69.99" ?>