Commit d1f29d92 authored by Ludovic Fauvet's avatar Ludovic Fauvet Committed by Rafaël Carré

msi: add the arch to the product name

Signed-off-by: default avatarRafaël Carré <funman@videolan.org>
parent 126657cf
...@@ -22,8 +22,10 @@ ...@@ -22,8 +22,10 @@
<?if $(var.Platform) = "x64" ?> <?if $(var.Platform) = "x64" ?>
<?define Win64 = "yes" ?> <?define Win64 = "yes" ?>
<?define PlatformString = "64-bit"?>
<?else ?> <?else ?>
<?define Win64 = "no" ?> <?define Win64 = "no" ?>
<?define PlatformString = "32-bit"?>
<?endif ?> <?endif ?>
<?define AppFolder = "VLC" ?> <?define AppFolder = "VLC" ?>
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
xmlns:util="http://schemas.microsoft.com/wix/UtilExtension"> xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
<Product <Product
Id='*' Id='*'
Name='$(var.ProductName) $(var.Version)' Name='$(var.ProductName) $(var.Version) ($(var.PlatformString))'
Language='1033' Language='1033'
Version='$(var.VersionLong)' Version='$(var.VersionLong)'
Manufacturer='$(var.Manufacturer)' Manufacturer='$(var.Manufacturer)'
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment