Skip to content

Commit 56777f9

Browse files
committed
fix: ignore Qt6 WebEngineCore PDB fiel that is too big for Wix Toolset 3
we have a limit in file size to 32 bits integer this file is more than 2 GBs Signed-off-by: Matthieu Gallien <[email protected]>
1 parent ad260d6 commit 56777f9

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

admin/win/msi/collect-transform.xsl.in

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,8 @@
4242
<xsl:key name="vc-redist-64-search" match="wix:Component[contains(wix:File/@Source, 'vc_redist.x64.exe')]" use="@Id" />
4343
<xsl:template match="wix:Component[key('vc-redist-64-search', @Id)]" />
4444
<xsl:template match="wix:ComponentRef[key('vc-redist-64-search', @Id)]" />
45-
</xsl:stylesheet>
45+
46+
<xsl:key name="Qt6 WebEngine Core PDB" match="wix:Component[contains(wix:File/@Source, 'Qt6WebEngineCore.pdb')]" use="@Id" />
47+
<xsl:template match="wix:Component[key('Qt6 WebEngine Core PDB', @Id)]" />
48+
<xsl:template match="wix:ComponentRef[key('Qt6 WebEngine Core PDB', @Id)]" />
49+
</xsl:stylesheet>

0 commit comments

Comments
 (0)