summaryrefslogtreecommitdiffstats
path: root/packaging/wix/UserInterface.wxi
diff options
context:
space:
mode:
Diffstat (limited to 'packaging/wix/UserInterface.wxi')
-rw-r--r--packaging/wix/UserInterface.wxi18
1 files changed, 18 insertions, 0 deletions
diff --git a/packaging/wix/UserInterface.wxi b/packaging/wix/UserInterface.wxi
new file mode 100644
index 00000000..e5726664
--- /dev/null
+++ b/packaging/wix/UserInterface.wxi
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="utf-8"?>
+<Include>
+ <!-- Define the appearance, sequence, and available options in the user interface -->
+ <Fragment>
+ <WixVariable Id="WixUILicenseRtf" Value="$(var.EulaPath)" />
+ <WixVariable Id="WixUIBannerBmp" Value="$(var.BannerImagePath)" />
+ <WixVariable Id="WixUIDialogBmp" Value="$(var.DialogImagePath)" />
+ <Icon Id="ProgramsFeaturesIcon" SourceFile="$(var.ProgramsFeaturesIconPath)"/>
+ <Property Id="ARPPRODUCTICON" Value="ProgramsFeaturesIcon" />
+
+ <!-- This UI identifier will be used in the product definition-->
+ <UI Id="UI.Wireshark">
+
+ <Property Id="WIXUI_INSTALLDIR" Value="INSTALLFOLDER" ></Property>
+ <UIRef Id="WiresharkWixUI" />
+ </UI>
+ </Fragment>
+</Include>