mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2024-12-14 13:22:27 +00:00
91 lines
4 KiB
XML
91 lines
4 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<?define ShortName = "Moonlight" ?>
|
|
<?define FullName = "Moonlight Game Streaming Client" ?>
|
|
|
|
<?define ShortcutName = "$(var.ShortName)" ?>
|
|
<?define ShortcutDesc = "Stream games from a NVIDIA GameStream-compatible PC" ?>
|
|
<?define InstallFolder = "Moonlight Game Streaming" ?>
|
|
|
|
<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">
|
|
|
|
<Product Id="*"
|
|
Name="$(var.FullName)"
|
|
Language="1033"
|
|
Version="!(bind.fileVersion.MoonlightExe)"
|
|
Manufacturer="Moonlight Game Streaming Team"
|
|
UpgradeCode="5c09f94e-f809-4c6a-9b7b-597c99f041fe">
|
|
|
|
<Package InstallerVersion="500" Compressed="yes" InstallScope="perMachine" />
|
|
|
|
<MajorUpgrade DowngradeErrorMessage="A newer version of [ProductName] is already installed." Schedule="afterInstallInitialize" />
|
|
<MediaTemplate CompressionLevel="high" EmbedCab="yes" />
|
|
|
|
<?if $(var.Platform) = x64 ?>
|
|
<?define PlatformProgramFilesFolder = "ProgramFiles64Folder" ?>
|
|
<?else ?>
|
|
<?define PlatformProgramFilesFolder = "ProgramFilesFolder" ?>
|
|
<?endif ?>
|
|
|
|
<Directory Id="TARGETDIR" Name="SourceDir">
|
|
<Directory Id="DesktopFolder" />
|
|
<Directory Id="$(var.PlatformProgramFilesFolder)">
|
|
<Directory Id="INSTALLFOLDER" Name="$(var.InstallFolder)" />
|
|
</Directory>
|
|
<Directory Id="ProgramMenuFolder">
|
|
<Directory Id="ApplicationProgramsFolder" Name="$(var.InstallFolder)" />
|
|
</Directory>
|
|
</Directory>
|
|
|
|
<Property Id="APPDATAFOLDER">%LOCALAPPDATA%\Moonlight Game Streaming Project</Property>
|
|
|
|
<!-- There's no way to delete a registry key on uninstall but not major upgrade, so
|
|
we have to roll our own deletion via custom action -->
|
|
<CustomAction Id="DeleteRegistryKey"
|
|
Directory="$(var.PlatformProgramFilesFolder)"
|
|
ExeCommand="reg.exe delete "HKCU\Software\Moonlight Game Streaming Project" /f"
|
|
Execute="deferred"
|
|
Return="ignore"
|
|
Impersonate="yes"/>
|
|
<InstallExecuteSequence>
|
|
<Custom Action="DeleteRegistryKey" Before="InstallFinalize">Installed AND REMOVE~="ALL" AND NOT UPGRADINGPRODUCTCODE</Custom>
|
|
</InstallExecuteSequence>
|
|
|
|
<Component Id="MoonlightShortcuts" Guid="*" Directory="INSTALLFOLDER">
|
|
<Shortcut Id="StartMenuShortcut"
|
|
Name="$(var.ShortcutName)"
|
|
Description="$(var.ShortcutDesc)"
|
|
Target="[#MoonlightExe]"
|
|
Directory="ApplicationProgramsFolder"
|
|
WorkingDirectory="INSTALLFOLDER" />
|
|
<Shortcut Id="DesktopShortcut"
|
|
Name="$(var.ShortcutName)"
|
|
Description="$(var.ShortcutDesc)"
|
|
Target="[#MoonlightExe]"
|
|
Directory="DesktopFolder"
|
|
WorkingDirectory="INSTALLFOLDER" />
|
|
<RemoveFolder Id="CleanupStartMenuShortcut" Directory="ApplicationProgramsFolder" On="uninstall" />
|
|
<RemoveFolder Id="CleanupDesktopShortcut" Directory="DesktopFolder" On="uninstall" />
|
|
<util:RemoveFolderEx Id="CleanupAppDataFolder" On="uninstall" Property="APPDATAFOLDER" />
|
|
<RegistryValue Root="HKCU" Key="Software\Moonlight Game Streaming Project" Name="Installed" Type="integer" Value="1" KeyPath="yes" />
|
|
</Component>
|
|
|
|
<DirectoryRef Id="INSTALLFOLDER">
|
|
<Component Id="Moonlight" Guid="*">
|
|
<File Id="MoonlightExe" KeyPath="yes" Checksum="yes" Source="$(var.SourceDir)\Moonlight.exe">
|
|
<fire:FirewallException Id="MoonlightFirewallException"
|
|
Scope="any"
|
|
Name="$(var.FullName)" />
|
|
</File>
|
|
</Component>
|
|
</DirectoryRef>
|
|
|
|
<Feature Id="ProductFeature" Title="Moonlight" Level="1" ConfigurableDirectory="INSTALLFOLDER">
|
|
<ComponentRef Id="Moonlight" />
|
|
<ComponentRef Id="MoonlightShortcuts" />
|
|
<ComponentGroupRef Id="MoonlightDependencies" />
|
|
</Feature>
|
|
</Product>
|
|
</Wix>
|