New Windows Qt5/Qt6 CI test, enable -platform windows:fontengine=freetype

This commit is contained in:
Laurent Trinques
2026-07-19 18:55:26 +02:00
parent 6941edcdf5
commit 8e736c59ba
4 changed files with 16 additions and 4 deletions
+9
View File
@@ -244,6 +244,14 @@ jobs:
Write-Host " ProductCode : $productCode"
Write-Host " Output : dist\$outputName"
if ("${{ matrix.flavor }}" -eq "qt5") {
$qtArgs = "-platform windows:fontengine=freetype"
}
else {
$qtArgs = ""
}
wix build $wxs `
-arch x64 `
-d "Version=$version" `
@@ -251,6 +259,7 @@ jobs:
-d "ProductCode=$productCode" `
-d "FilesDir=$filesDir" `
-d "LicenseRtf=$licRtf" `
-d QtPlatformArgs="$qtArgs" `
-ext WixToolset.UI.wixext `
-ext WixToolset.Util.wixext `
-o "dist\$outputName"