Create bundle with GStreamer and Servo installers

This commit is contained in:
Fernando Jiménez Moreno 2018-09-03 11:31:34 +02:00
parent 049eb6887e
commit c3ed1d11c0
3 changed files with 51 additions and 1 deletions

19
support/windows/Servo.wxs Normal file
View file

@ -0,0 +1,19 @@
<?xml version="1.0"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Bundle Name="Servo"
Version="1.0"
UpgradeCode="91b09c7e-6c0d-4166-b806-1dc724acf728">
<BootstrapperApplicationRef Id="WixStandardBootstrapperApplication.RtfLicense" />
<Chain>
<MsiPackage
SourceFile="Gstreamer.msi"
DisplayName="GStreamer"
ForcePerMachine="yes"/>
<MsiPackage
SourceFile="Installer.msi"
Compressed="yes"
DisplayName="Servo"
ForcePerMachine="yes"/>
</Chain>
</Bundle>
</Wix>