Skip to content
Snippets Groups Projects
Commit 5430b355 authored by Kaleb Luedtke's avatar Kaleb Luedtke Committed by Trenly
Browse files

Set extra version number when building MSI

parent 80dd05f9
No related branches found
No related tags found
No related merge requests found
Pipeline #213078 passed with stage
in 28 minutes and 30 seconds
......@@ -10,8 +10,9 @@
<?define VerMajor = "@VERSION_MAJOR@" ?>
<?define VerMinor = "@VERSION_MINOR@" ?>
<?define VerPatch = "@VERSION_REVISION@" ?>
<?define VerExtra = "@VERSION_EXTRA@" ?>
<?define Version = "$(var.VerMajor).$(var.VerMinor).$(var.VerPatch)" ?>
<?define VersionLong = "$(var.Version).0" ?>
<?define VersionLong = "$(var.Version).$(var.VerExtra)" ?>
<?define SourceDir = "vlc-@VERSION@" ?>
<!--<?define PluginsPath = "$(var.BinPath)\plugins" ?>
......
......@@ -25,7 +25,7 @@
xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
<Product
Id='*'
Name='$(var.ProductName) $(var.Version) ($(var.PlatformString))'
Name='$(var.ProductName)'
Language='1033'
Version='$(var.VersionLong)'
Manufacturer='$(var.Manufacturer)'
......@@ -400,5 +400,3 @@
<ProgressText Action="RegisterAxvlc">Registering DirectX plugin...</ProgressText>
<ProgressText Action="UnregisterAxvlc">Removing DirectX plugin...</ProgressText>
-->
......@@ -41,7 +41,7 @@
/** LibVLC revision */
# define LIBVLC_VERSION_REVISION (@VERSION_REVISION@)
# define LIBVLC_VERSION_EXTRA (0)
# define LIBVLC_VERSION_EXTRA (@VERSION_EXTRA@)
/** Makes a single integer from a LibVLC version numbers */
# define LIBVLC_VERSION(maj,min,rev,extra) \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment