Remove the bearer plugin from the 32-bit build

The 32-bit version is built using Qt 5.7 and it doesn't look like it needs this plugin. It will be included in 64-bit builds only.

See #1592.
This commit is contained in:
Karim ElDeeb
2018-11-25 02:09:01 +02:00
parent 9c0ccc3cb1
commit 1f0acad07c

View File

@@ -62,9 +62,12 @@
<Component><File Source="$(var.QtPath)\plugins\styles\qwindowsvistastyle.dll" /></Component>
</Directory>
<?endif?>
<!-- This plugin is not needed for the 32-bit version which is built with Qt 5.7. -->
<?if $(sys.BUILDARCH)="x64"?>
<Directory Id="bearer" Name="bearer">
<Component><File Source="$(var.QtPath)\plugins\bearer\qgenericbearer.dll" /></Component>
</Directory>
<?endif?>
<Directory Id="imageformats" Name="imageformats">
<Component><File Source="$(var.QtPath)\plugins\imageformats\qgif.dll" /></Component>
<Component><File Source="$(var.QtPath)\plugins\imageformats\qicns.dll" /></Component>
@@ -135,7 +138,9 @@
</Feature>
<!-- Bearer -->
<?if $(sys.BUILDARCH)="x64"?>
<ComponentRef Id="qgenericbearer.dll" />
<?endif?>
<!-- Plugins -->
<ComponentRef Id="qgif.dll" />
<ComponentRef Id="qicns.dll" />