From 7a64c34474d6c28113ea726d8a4e9a28298574ae Mon Sep 17 00:00:00 2001 From: PatTheMav Date: Wed, 28 Jun 2023 23:01:58 +0200 Subject: [PATCH] deps.qt: Disable x86 build slice for Qt6 --- deps.qt/qt6.ps1 | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/deps.qt/qt6.ps1 b/deps.qt/qt6.ps1 index 8cafc6912..7fb50b8dd 100644 --- a/deps.qt/qt6.ps1 +++ b/deps.qt/qt6.ps1 @@ -3,7 +3,7 @@ param( [string] $Version = '6.5.2', [string] $Uri = 'https://download.qt.io/official_releases/qt/6.5/6.5.2', [string] $Hash = "${PSScriptRoot}/checksums", - [array] $Targets = @('x64', 'x86') + [array] $Targets = @('x64') ) $QtComponents = @( @@ -116,7 +116,6 @@ function Configure { $CMakeTarget = @{ x64 = 'x64' - x86 = 'Win32' } $Options = ($Options -join ' ') -replace '-G Visual Studio \d+ \d+','-G Ninja' -replace "-A $($CMakeTarget[$Target])",'' @@ -200,7 +199,6 @@ function Qt-Add-Submodules { $CMakeTarget = @{ x64 = 'x64' - x86 = 'Win32' } $QtComponents | Where-Object { $_ -ne 'qtbase' } | ForEach-Object {