mirror of
https://github.com/mumble-voip/mumble.git
synced 2025-10-26 11:19:16 +00:00
This is only possible for now because x86 uses the D3DCompiler_43.dll and x64 uses the D3DCompiler_47.dll. If we need both to use the same version, we'll need a more complex directory structure. But let's tackle that then.
378 lines
14 KiB
XML
378 lines
14 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
|
|
<?include "Settings.wxi" ?>
|
|
|
|
<!-- Mumble -->
|
|
<Fragment>
|
|
<DirectoryRef Id="INSTALLDIR">
|
|
<Component Id="MumbleDesktopShortcutComponent" Guid="$(var.MumbleDesktopShortcutGuid)" KeyPath="yes">
|
|
<Shortcut Id="MumbleDesktopShortcut"
|
|
Directory="DesktopFolder"
|
|
Name="Mumble"
|
|
WorkingDirectory="INSTALLDIR"
|
|
Target="[INSTALLDIR]mumble.exe">
|
|
<ShortcutProperty Key="System.AppUserModel.ID" Value="net.sourceforge.mumble.Mumble" />
|
|
</Shortcut>
|
|
</Component>
|
|
|
|
<Component Id="mumble.exe" Guid="$(var.MumbleExeGuid)">
|
|
<File Id="mumble.exe" Source="$(var.SourceDir)\release\mumble.exe" KeyPath="yes">
|
|
<Shortcut Id="MumbleShortcut" Directory="ApplicationProgramsFolder" Name="Mumble" WorkingDirectory="INSTALLDIR">
|
|
<ShortcutProperty Key="System.AppUserModel.ID" Value="net.sourceforge.mumble.Mumble" />
|
|
</Shortcut>
|
|
</File>
|
|
|
|
<RegistryValue Root="HKCR" Key="mumble" Value="URL:Mumble" Type="string" />
|
|
<RegistryValue Root="HKCR" Key="mumble" Name="URL Protocol" Value="" Type="string" />
|
|
<RegistryValue Root="HKCR" Key="mumble\DefaultIcon" Value="[#mumble.exe]" Type="string" />
|
|
<RegistryValue Root="HKCR" Key="mumble\shell\open\command" Value="[#mumble.exe] "%1"" Type="string" />
|
|
</Component>
|
|
<?ifdef StaticBuild ?>
|
|
<Component Id="mumble_app.dll">
|
|
<File Source="$(var.SourceDir)\release\mumble_app.dll" KeyPath="yes" />
|
|
</Component>
|
|
<?endif ?>
|
|
<Component Id="mumble_ol.dll">
|
|
<File Source="$(var.SourceDir)\release\mumble_ol.dll" KeyPath="yes" />
|
|
</Component>
|
|
<Component Id="mumble_ol.exe">
|
|
<File Source="$(var.SourceDir)\release\mumble_ol.exe" KeyPath="yes" />
|
|
</Component>
|
|
<Component Id="mumble_ol_x64.dll">
|
|
<File Source="$(var.SourceDir)\release\mumble_ol_x64.dll" KeyPath="yes" />
|
|
</Component>
|
|
<Component Id="mumble_ol_x64.exe">
|
|
<File Source="$(var.SourceDir)\release\mumble_ol_x64.exe" KeyPath="yes" />
|
|
</Component>
|
|
<Component Id="celt0.0.7.0.dll">
|
|
<File Source="$(var.SourceDir)\release\celt0.0.7.0.dll" KeyPath="yes" />
|
|
</Component>
|
|
<Component Id="celt0.0.11.0.dll">
|
|
<File Source="$(var.SourceDir)\release\celt0.0.11.0.dll" KeyPath="yes" />
|
|
</Component>
|
|
<Component Id="speex.dll">
|
|
<File Source="$(var.SourceDir)\release\speex.dll" KeyPath="yes" />
|
|
</Component>
|
|
<Component Id="opus.dll">
|
|
<File Source="$(var.SourceDir)\release\opus.dll" KeyPath="yes" />
|
|
</Component>
|
|
|
|
<?ifdef G15 ?>
|
|
<Component Id="mumble_g15_helper.exe">
|
|
<File Source="$(var.SourceDir)\release\mumble-g15-helper.exe" KeyPath="yes" />
|
|
</Component>
|
|
<?endif ?>
|
|
|
|
<Component Id="MurmurDesktopShortcutComponent" Guid="$(var.MurmurDesktopShortcutGuid)" KeyPath="yes">
|
|
<Shortcut Id="MurmurDesktopShortcut"
|
|
Directory="DesktopFolder"
|
|
Name="Murmur"
|
|
WorkingDirectory="INSTALLDIR"
|
|
Target="[INSTALLDIR]murmur.exe"
|
|
Icon="murmur.ico"
|
|
IconIndex="0" />
|
|
</Component>
|
|
|
|
<Component Id="murmur.exe">
|
|
<File Id="murmur.exe" Source="$(var.SourceDir)\release\murmur.exe" KeyPath="yes">
|
|
<Shortcut Id="MurmurShortcut" Directory="ApplicationProgramsFolder" Name="Murmur" WorkingDirectory="INSTALLDIR" Icon="murmur.ico" IconIndex="0" />
|
|
</File>
|
|
</Component>
|
|
<Component Id="murmur.ini" NeverOverwrite="yes">
|
|
<File Source="$(var.SourceDir)\scripts\murmur.ini.win32" Name="murmur.ini" KeyPath="yes" />
|
|
</Component>
|
|
<Component Id="Murmur.ice">
|
|
<File Source="$(var.SourceDir)\src\murmur\Murmur.ice" KeyPath="yes" />
|
|
</Component>
|
|
|
|
<?ifndef StaticBuild ?>
|
|
<Component Id="qt.conf">
|
|
<File Source="$(var.SourceDir)\scripts\qt.conf" KeyPath="yes" />
|
|
</Component>
|
|
<?endif ?>
|
|
|
|
<Component Id="licence.txt" Guid="$(var.LicenseTextGuid)">
|
|
<File Source="$(var.SourceDir)\installer\gpl.txt" Name="licence.txt" KeyPath="yes" />
|
|
</Component>
|
|
<Component Id="Readme.txt" Guid="$(var.ReadMeTextGuid)">
|
|
<File Source="$(var.SourceDir)\README" Name="Readme.txt" KeyPath="yes" />
|
|
</Component>
|
|
<Component Id="Changes.txt">
|
|
<File Source="$(var.SourceDir)\CHANGES" Name="Changes.txt" KeyPath="yes" />
|
|
</Component>
|
|
<Component Id="speex.txt">
|
|
<File Source="$(var.SourceDir)\installer\speex.txt" KeyPath="yes" />
|
|
</Component>
|
|
<Component Id="qt.txt">
|
|
<File Source="$(var.SourceDir)\installer\qt.txt" KeyPath="yes" />
|
|
</Component>
|
|
|
|
<Component Id="dbghelp.dll">
|
|
<File Source="$(var.DebugToolsDir)\dbghelp.dll" KeyPath="yes" />
|
|
</Component>
|
|
|
|
<?ifdef IntelCppDir ?>
|
|
<Component Id="libmmd.dll">
|
|
<File Source="$(var.IntelCppDir)\libmmd.dll" KeyPath="yes" />
|
|
</Component>
|
|
<?endif ?>
|
|
|
|
<?ifdef SSE ?>
|
|
<Component Id="celt0.0.7.0.sse.dll">
|
|
<File Source="$(var.SourceDir)\release\celt0.0.7.0.sse.dll" KeyPath="yes" />
|
|
</Component>
|
|
<Component Id="celt0.0.11.0.sse.dll">
|
|
<File Source="$(var.SourceDir)\release\celt0.0.11.0.sse.dll" KeyPath="yes" />
|
|
</Component>
|
|
<?endif ?>
|
|
|
|
<?ifdef SSE2 ?>
|
|
<Component Id="celt0.0.7.0.sse2.dll">
|
|
<File Source="$(var.SourceDir)\release\celt0.0.7.0.sse2.dll" KeyPath="yes" />
|
|
</Component>
|
|
<Component Id="celt0.0.11.0.sse2.dll">
|
|
<File Source="$(var.SourceDir)\release\celt0.0.11.0.sse2.dll" KeyPath="yes" />
|
|
</Component>
|
|
<Component Id="opus.sse2.dll">
|
|
<File Source="$(var.SourceDir)\release\opus.sse2.dll" KeyPath="yes" />
|
|
</Component>
|
|
<?endif ?>
|
|
|
|
<?ifdef RedistDirVC12 ?>
|
|
<Component Id="msvcp120.dll">
|
|
<File Source="$(var.RedistDirVC12)\msvcp120.dll" KeyPath="yes" />
|
|
</Component>
|
|
<Component Id="msvcr120.dll">
|
|
<File Source="$(var.RedistDirVC12)\msvcr120.dll" KeyPath="yes" />
|
|
</Component>
|
|
<?endif ?>
|
|
|
|
<?ifdef D3DCompilerDLL ?>
|
|
<Component Id="d3dcompiler_43.dll">
|
|
<File Source="$(var.System32x86Dir)\d3dcompiler_43.dll" KeyPath="yes" />
|
|
</Component>
|
|
<Component Id="d3dcompiler_47.dll">
|
|
<File Source="$(var.Win81SDKDir)\Redist\D3D\x64\d3dcompiler_47.dll" KeyPath="yes" />
|
|
</Component>
|
|
<?endif ?>
|
|
</DirectoryRef>
|
|
</Fragment>
|
|
|
|
<!-- DBus -->
|
|
<?ifndef StaticBuild ?>
|
|
<?ifdef DBusDir ?>
|
|
<Fragment>
|
|
<DirectoryRef Id="INSTALLDIR">
|
|
<Component Id="dbus1.dll">
|
|
<File Source="$(var.DBusDir)\bin\dbus-1.dll" KeyPath="yes" />
|
|
</Component>
|
|
<Component Id="libxml2.dll">
|
|
<File Source="$(var.DBusDir)\bin\libxml2.dll" KeyPath="yes" />
|
|
</Component>
|
|
<Component Id="iconv.dll">
|
|
<File Source="$(var.DBusDir)\bin\iconv.dll" KeyPath="yes" />
|
|
</Component>
|
|
<Component Id="dbusdaemon.exe">
|
|
<File Source="$(var.DBusDir)\bin\dbus-daemon.exe" KeyPath="yes" />
|
|
</Component>
|
|
<Component Id="session.conf">
|
|
<File Source="$(var.DBusDir)\etc\session.conf" KeyPath="yes" />
|
|
</Component>
|
|
</DirectoryRef>
|
|
<ComponentGroup Id="DBus">
|
|
<ComponentRef Id="dbus1.dll" />
|
|
<ComponentRef Id="libxml2.dll" />
|
|
<ComponentRef Id="iconv.dll" />
|
|
<ComponentRef Id="dbusdaemon.exe" />
|
|
<ComponentRef Id="session.conf" />
|
|
</ComponentGroup>
|
|
</Fragment>
|
|
<?endif ?>
|
|
<?endif ?>
|
|
|
|
<!-- libsndfile -->
|
|
<?ifndef StaticBuild ?>
|
|
<?ifdef SndFileDir ?>
|
|
<Fragment>
|
|
<DirectoryRef Id="INSTALLDIR">
|
|
<Component Id="libsndfile1.dll">
|
|
<File Source="$(var.SndFileDir)\libsndfile-1.dll" KeyPath="yes" />
|
|
</Component>
|
|
</DirectoryRef>
|
|
</Fragment>
|
|
<?endif ?>
|
|
<?endif ?>
|
|
|
|
<!-- MySQL -->
|
|
<?ifndef StaticBuild ?>
|
|
<?ifdef MySQLDir ?>
|
|
<Fragment>
|
|
<DirectoryRef Id="INSTALLDIR">
|
|
<Component Id="libmysql.dll">
|
|
<File Source="$(var.MySQLDir)\lib\libmysql.dll" KeyPath="yes" />
|
|
</Component>
|
|
</DirectoryRef>
|
|
</Fragment>
|
|
<?endif ?>
|
|
<?endif ?>
|
|
|
|
<!-- Ice -->
|
|
<?ifndef StaticBuild ?>
|
|
<?ifdef IceDir ?>
|
|
<Fragment>
|
|
<DirectoryRef Id="INSTALLDIR">
|
|
<Component Id="bzip2.dll">
|
|
<File Source="$(var.Bzip2Dir)\bzip2.dll" KeyPath="yes" />
|
|
</Component>
|
|
<Component Id="ice34.dll">
|
|
<File Source="$(var.IceDir)\ice34.dll" KeyPath="yes" />
|
|
</Component>
|
|
<Component Id="iceutil34.dll">
|
|
<File Source="$(var.IceDir)\iceutil34.dll" KeyPath="yes" />
|
|
</Component>
|
|
</DirectoryRef>
|
|
</Fragment>
|
|
<?endif ?>
|
|
<?endif ?>
|
|
|
|
<!-- OpenSSL -->
|
|
<?ifndef StaticBuild ?>
|
|
<Fragment>
|
|
<DirectoryRef Id="INSTALLDIR">
|
|
<Component Id="libeay32.dll">
|
|
<File Source="$(var.OpenSslDir)\bin\libeay32.dll" KeyPath="yes" />
|
|
</Component>
|
|
<Component Id="ssleay32.dll">
|
|
<File Source="$(var.OpenSslDir)\bin\ssleay32.dll" KeyPath="yes" />
|
|
</Component>
|
|
<?ifdef ZlibDir ?>
|
|
<Component Id="zlib1.dll">
|
|
<File Source="$(var.ZlibDir)\zlib1.dll" KeyPath="yes" />
|
|
</Component>
|
|
<?endif ?>
|
|
</DirectoryRef>
|
|
</Fragment>
|
|
<?endif ?>
|
|
|
|
<!-- Qt -->
|
|
<?ifndef StaticBuild ?>
|
|
<Fragment>
|
|
<DirectoryRef Id="INSTALLDIR">
|
|
<Component Id="QtCore4.dll">
|
|
<File Source="$(var.QtDir)\bin\QtCore4.dll" KeyPath="yes" />
|
|
</Component>
|
|
<Component Id="QtGui4.dll">
|
|
<File Source="$(var.QtDir)\bin\QtGui4.dll" KeyPath="yes" />
|
|
</Component>
|
|
<Component Id="QtNetwork4.dll">
|
|
<File Source="$(var.QtDir)\bin\QtNetwork4.dll" KeyPath="yes" />
|
|
</Component>
|
|
<Component Id="QtSql4.dll">
|
|
<File Source="$(var.QtDir)\bin\QtSql4.dll" KeyPath="yes" />
|
|
</Component>
|
|
<Component Id="QtSvg4.dll">
|
|
<File Source="$(var.QtDir)\bin\QtSvg4.dll" KeyPath="yes" />
|
|
</Component>
|
|
<Component Id="QtXml4.dll">
|
|
<File Source="$(var.QtDir)\bin\QtXml4.dll" KeyPath="yes" />
|
|
</Component>
|
|
</DirectoryRef>
|
|
</Fragment>
|
|
|
|
<Fragment>
|
|
<DirectoryRef Id="QtPluginAccessibleFolder">
|
|
<Component Id="qtaccessiblewidgets4.dll">
|
|
<File Source="$(var.QtDir)\plugins\accessible\qtaccessiblewidgets4.dll" KeyPath="yes" />
|
|
</Component>
|
|
</DirectoryRef>
|
|
</Fragment>
|
|
|
|
<Fragment>
|
|
<DirectoryRef Id="QtPluginIconEnginesFolder">
|
|
<Component Id="qsvgicon4.dll">
|
|
<File Source="$(var.QtDir)\plugins\iconengines\qsvgicon4.dll" KeyPath="yes" />
|
|
</Component>
|
|
</DirectoryRef>
|
|
</Fragment>
|
|
|
|
<Fragment>
|
|
<DirectoryRef Id="QtPluginImageFormatsFolder">
|
|
<Component Id="qgif4.dll">
|
|
<File Source="$(var.QtDir)\plugins\imageformats\qgif4.dll" KeyPath="yes" />
|
|
</Component>
|
|
<Component Id="qico4.dll">
|
|
<File Source="$(var.QtDir)\plugins\imageformats\qico4.dll" KeyPath="yes" />
|
|
</Component>
|
|
<Component Id="qjpeg4.dll">
|
|
<File Source="$(var.QtDir)\plugins\imageformats\qjpeg4.dll" KeyPath="yes" />
|
|
</Component>
|
|
<Component Id="qmng4.dll">
|
|
<File Source="$(var.QtDir)\plugins\imageformats\qmng4.dll" KeyPath="yes" />
|
|
</Component>
|
|
<Component Id="qsvg4.dll">
|
|
<File Source="$(var.QtDir)\plugins\imageformats\qsvg4.dll" KeyPath="yes" />
|
|
</Component>
|
|
<Component Id="qtiff4.dll">
|
|
<File Source="$(var.QtDir)\plugins\imageformats\qtiff4.dll" KeyPath="yes" />
|
|
</Component>
|
|
</DirectoryRef>
|
|
</Fragment>
|
|
|
|
<Fragment>
|
|
<DirectoryRef Id="QtPluginCodecsFolder">
|
|
<Component Id="qcncodecs4.dll">
|
|
<File Source="$(var.QtDir)\plugins\codecs\qcncodecs4.dll" KeyPath="yes" />
|
|
</Component>
|
|
<Component Id="qjpcodecs4.dll">
|
|
<File Source="$(var.QtDir)\plugins\codecs\qjpcodecs4.dll" KeyPath="yes" />
|
|
</Component>
|
|
<Component Id="qkrcodecs4.dll">
|
|
<File Source="$(var.QtDir)\plugins\codecs\qkrcodecs4.dll" KeyPath="yes" />
|
|
</Component>
|
|
<Component Id="qtwcodecs4.dll">
|
|
<File Source="$(var.QtDir)\plugins\codecs\qtwcodecs4.dll" KeyPath="yes" />
|
|
</Component>
|
|
</DirectoryRef>
|
|
</Fragment>
|
|
|
|
<Fragment>
|
|
<ComponentGroup Id="Qt">
|
|
<ComponentRef Id="QtCore4.dll" />
|
|
<ComponentRef Id="QtGui4.dll" />
|
|
<ComponentRef Id="QtNetwork4.dll" />
|
|
<ComponentRef Id="QtSql4.dll" />
|
|
<ComponentRef Id="QtSvg4.dll" />
|
|
<ComponentRef Id="QtXml4.dll" />
|
|
|
|
<ComponentRef Id="qtaccessiblewidgets4.dll" />
|
|
<ComponentRef Id="qsvgicon4.dll" />
|
|
<ComponentRef Id="qgif4.dll" />
|
|
<ComponentRef Id="qico4.dll" />
|
|
<ComponentRef Id="qjpeg4.dll" />
|
|
<ComponentRef Id="qmng4.dll" />
|
|
<ComponentRef Id="qsvg4.dll" />
|
|
<ComponentRef Id="qtiff4.dll" />
|
|
<ComponentRef Id="qcncodecs4.dll" />
|
|
<ComponentRef Id="qjpcodecs4.dll" />
|
|
<ComponentRef Id="qkrcodecs4.dll" />
|
|
<ComponentRef Id="qtwcodecs4.dll" />
|
|
</ComponentGroup>
|
|
</Fragment>
|
|
<?endif ?>
|
|
|
|
<!-- Directory tree -->
|
|
<Fragment>
|
|
<DirectoryRef Id="INSTALLDIR">
|
|
<Directory Id="PluginFolder" Name="plugins" />
|
|
<?ifndef StaticBuild ?>
|
|
<Directory Id="QtPluginFolder" Name="QtPlugins">
|
|
<Directory Id="QtPluginIconEnginesFolder" Name="iconengines" />
|
|
<Directory Id="QtPluginImageFormatsFolder" Name="imageformats" />
|
|
<Directory Id="QtPluginAccessibleFolder" Name="accessible" />
|
|
<Directory Id="QtPluginCodecsFolder" Name="codecs" />
|
|
</Directory>
|
|
<?endif ?>
|
|
</DirectoryRef>
|
|
</Fragment>
|
|
</Wix>
|