2014-03-07 19:41:08 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2014-03-10 19:31:14 +00:00
|
|
|
<Wix
|
|
|
|
xmlns="http://schemas.microsoft.com/wix/2006/wi"
|
|
|
|
xmlns:fire="http://schemas.microsoft.com/wix/FirewallExtension"
|
|
|
|
xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
|
|
|
|
|
2014-03-07 19:41:08 +00:00
|
|
|
<?include Include.wxi?>
|
|
|
|
|
2014-03-10 19:31:14 +00:00
|
|
|
<Product
|
2014-03-10 20:21:14 +00:00
|
|
|
Id="*"
|
|
|
|
UpgradeCode="$(var.UpgradeGuid)"
|
|
|
|
Name="$(var.Name) ($(var.PlatformSimpleName))"
|
|
|
|
Language="1033"
|
|
|
|
Version="$(var.Version)"
|
|
|
|
Manufacturer="$(var.Author)">
|
2014-03-10 19:31:14 +00:00
|
|
|
|
|
|
|
<Package InstallerVersion="300" Compressed="yes" InstallScope="perMachine" />
|
|
|
|
<MajorUpgrade DowngradeErrorMessage="A newer version of $(var.Name) is already installed." />
|
2014-03-07 19:41:08 +00:00
|
|
|
<MediaTemplate EmbedCab="yes" />
|
|
|
|
<UIRef Id="WixUI_InstallDir" />
|
2014-03-10 20:21:14 +00:00
|
|
|
|
|
|
|
<!-- causes ICE61 warning, but stops user from installing many instances from nightly builds. -->
|
|
|
|
<Upgrade Id="$(var.UpgradeGuid)">
|
|
|
|
<UpgradeVersion Minimum="0.0.0.0" Property="UPGRADE" />
|
|
|
|
</Upgrade>
|
|
|
|
|
2014-03-07 19:41:08 +00:00
|
|
|
<Feature Id="ProductFeature" Title="$(var.Name)">
|
|
|
|
<ComponentGroupRef Id="ProductComponents" />
|
2015-04-20 13:35:52 +00:00
|
|
|
<ComponentGroupRef Id="OpenSslComponents" />
|
2014-03-10 19:31:14 +00:00
|
|
|
<MergeRef Id="CRT" />
|
2014-03-07 19:41:08 +00:00
|
|
|
</Feature>
|
|
|
|
|
|
|
|
<Icon Id="synergy.ico" SourceFile="$(var.ResPath)/synergy.ico"/>
|
|
|
|
|
|
|
|
<WixVariable Id="WixUILicenseRtf" Value="$(var.ResPath)\License.rtf" />
|
|
|
|
<WixVariable Id="WixUIBannerBmp" Value="$(var.ResPath)\banner.bmp" />
|
|
|
|
<WixVariable Id="WixUIDialogBmp" Value="$(var.ResPath)\dialog.bmp" />
|
|
|
|
|
|
|
|
<Property Id="ARPPRODUCTICON" Value="synergy.ico" />
|
|
|
|
<Property Id="WIXUI_INSTALLDIR" Value="INSTALLFOLDER" />
|
2014-03-10 19:31:14 +00:00
|
|
|
<Property Id="MSIRESTARTMANAGERCONTROL" Value="Disable" />
|
2014-03-07 19:41:08 +00:00
|
|
|
|
|
|
|
<Property Id="LEGACY_UNINSTALL_EXISTS">
|
|
|
|
<RegistrySearch
|
|
|
|
Id="LegacyRegistrySearch" Root="HKLM"
|
|
|
|
Key="SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\Synergy"
|
|
|
|
Name="UninstallString" Win64="no" Type="file">
|
|
|
|
<FileSearch Id="LegacyFileSearch" Name="uninstall.exe" />
|
|
|
|
</RegistrySearch>
|
|
|
|
</Property>
|
|
|
|
|
2014-03-10 19:31:14 +00:00
|
|
|
<Condition Message="An existing installation of $(var.Name) was detected, please uninstall it before continuing.">
|
2014-03-07 19:41:08 +00:00
|
|
|
NOT LEGACY_UNINSTALL_EXISTS
|
|
|
|
</Condition>
|
2015-05-06 15:19:51 +00:00
|
|
|
|
|
|
|
<CustomAction Id="StartGui" FileKey="GuiProgram" ExeCommand="" Return="asyncNoWait" />
|
|
|
|
<UI>
|
|
|
|
<Publish Dialog="ExitDialog"
|
|
|
|
Control="Finish"
|
|
|
|
Event="DoAction"
|
|
|
|
Value="StartGui">NOT Installed</Publish>
|
|
|
|
</UI>
|
|
|
|
|
2014-03-07 19:41:08 +00:00
|
|
|
</Product>
|
|
|
|
|
|
|
|
<Fragment>
|
|
|
|
<Directory Id="TARGETDIR" Name="SourceDir">
|
|
|
|
<Directory Id="$(var.ProgramFilesFolder)">
|
2014-03-10 19:31:14 +00:00
|
|
|
<Directory Id="INSTALLFOLDER" Name="$(var.Name)">
|
2014-03-10 20:21:14 +00:00
|
|
|
<Merge Id="CRT" Language="0" SourceFile="$(var.CRT)" DiskId="1" />
|
2015-04-20 13:35:52 +00:00
|
|
|
<Directory Id="OpenSslDir" Name="OpenSSL" />
|
2014-03-10 19:31:14 +00:00
|
|
|
</Directory>
|
2014-03-07 19:41:08 +00:00
|
|
|
</Directory>
|
|
|
|
<Directory Id="ProgramMenuFolder" />
|
|
|
|
</Directory>
|
|
|
|
</Fragment>
|
|
|
|
|
|
|
|
<Fragment>
|
2015-04-20 13:35:52 +00:00
|
|
|
|
2014-03-07 19:41:08 +00:00
|
|
|
<ComponentGroup Id="ProductComponents" Directory="INSTALLFOLDER">
|
|
|
|
|
2014-03-10 19:31:14 +00:00
|
|
|
<Component Id="Core" Guid="EC9AD3B0-277C-4157-B5C8-5FD5B6A5F4AD">
|
|
|
|
|
|
|
|
<File Source="$(var.BinPath)/synergyd.exe" KeyPath="yes" />
|
2016-05-04 15:09:01 +00:00
|
|
|
|
2014-03-07 19:41:08 +00:00
|
|
|
<ServiceInstall
|
2014-03-10 19:31:14 +00:00
|
|
|
Id="ServiceInstall" Name="Synergy" DisplayName="$(var.Name)"
|
|
|
|
Description="Controls the $(var.Name) foreground processes."
|
2016-05-04 15:09:01 +00:00
|
|
|
Type="ownProcess" Start="auto" ErrorControl="normal">
|
|
|
|
<util:ServiceConfig
|
|
|
|
FirstFailureActionType='restart'
|
|
|
|
SecondFailureActionType='restart'
|
|
|
|
ThirdFailureActionType='restart'
|
|
|
|
RestartServiceDelayInSeconds='1'
|
|
|
|
ResetPeriodInDays='1'/>
|
|
|
|
</ServiceInstall>
|
2014-03-10 19:31:14 +00:00
|
|
|
|
2014-03-07 19:41:08 +00:00
|
|
|
<ServiceControl
|
|
|
|
Id="ServiceControl" Name="Synergy"
|
|
|
|
Start="install" Stop="both" Remove="uninstall" />
|
2014-03-10 19:31:14 +00:00
|
|
|
|
2014-03-07 19:41:08 +00:00
|
|
|
<File Source="$(var.BinPath)/synergys.exe">
|
2014-12-01 18:32:00 +00:00
|
|
|
<fire:FirewallException Id="ServerFirewallException" Name="$(var.Name)" Scope="any" IgnoreFailure="yes" />
|
2014-03-07 19:41:08 +00:00
|
|
|
</File>
|
2014-03-10 19:31:14 +00:00
|
|
|
|
2014-03-07 19:41:08 +00:00
|
|
|
<File Source="$(var.BinPath)/synergyc.exe" />
|
|
|
|
<File Source="$(var.BinPath)/syntool.exe" />
|
|
|
|
<File Source="$(var.BinPath)/synwinhk.dll" />
|
2015-02-26 00:04:17 +00:00
|
|
|
<File Source="$(var.BinPath)/libeay32.dll" />
|
|
|
|
<File Source="$(var.BinPath)/ssleay32.dll" />
|
2014-03-10 19:31:14 +00:00
|
|
|
|
2014-03-07 19:41:08 +00:00
|
|
|
</Component>
|
|
|
|
|
|
|
|
<Component Id="Gui" Guid="BAC8149B-6287-45BF-9C27-43D71ED40214">
|
2014-03-10 19:31:14 +00:00
|
|
|
<File Id="GuiProgram" Source="$(var.BinPath)/synergy.exe" KeyPath="yes">
|
2014-03-07 19:41:08 +00:00
|
|
|
<Shortcut Id="GuiShortcut" Name="$(var.Name)" Directory="ProgramMenuFolder" Icon="synergy.ico" Advertise="yes" />
|
2014-12-01 18:19:20 +00:00
|
|
|
<fire:FirewallException Id="GuiFirewallException" Name="$(var.Name)" Scope="any" IgnoreFailure="yes" />
|
2014-03-07 19:41:08 +00:00
|
|
|
</File>
|
2014-03-10 19:31:14 +00:00
|
|
|
|
2015-11-24 19:43:14 +00:00
|
|
|
<File Source="$(var.QtPath)\libgcc_s_dw2-1.dll" />
|
|
|
|
<File Source="$(var.QtPath)\mingwm10.dll" />
|
|
|
|
<File Source="$(var.QtPath)\QtCore4.dll" />
|
|
|
|
<File Source="$(var.QtPath)\QtGui4.dll" />
|
|
|
|
<File Source="$(var.QtPath)\QtNetwork4.dll" />
|
2014-03-10 19:31:14 +00:00
|
|
|
|
2015-11-24 19:43:14 +00:00
|
|
|
<File Source="$(var.ExtPath)\bonjour\x64\dnssd.dll" />
|
2014-08-22 13:46:20 +00:00
|
|
|
|
2014-03-07 19:41:08 +00:00
|
|
|
</Component>
|
|
|
|
|
|
|
|
</ComponentGroup>
|
2015-04-20 13:35:52 +00:00
|
|
|
|
|
|
|
<ComponentGroup Id="OpenSslComponents" Directory="OpenSslDir">
|
|
|
|
<Component Id="OpenSsl" Guid="92648F77-65A6-4B16-AC59-A1F37BD341B1">
|
2015-04-29 18:35:12 +00:00
|
|
|
<File Source="$(var.ExtPath)/$(var.OpensslPath)/out32dll/libeay32.dll" Id="OpenSslDll1" />
|
|
|
|
<File Source="$(var.ExtPath)/$(var.OpensslPath)/out32dll/ssleay32.dll" Id="OpenSslDll2" />
|
|
|
|
<File Source="$(var.ExtPath)/$(var.OpensslPath)/out32dll/openssl.exe" />
|
2015-04-20 13:35:52 +00:00
|
|
|
<File Source="$(var.ResPath)/openssl/synergy.conf" />
|
|
|
|
</Component>
|
|
|
|
</ComponentGroup>
|
2015-06-05 23:55:36 +00:00
|
|
|
|
2014-03-07 19:41:08 +00:00
|
|
|
</Fragment>
|
|
|
|
</Wix>
|