Skip to content

Commit

Permalink
deps.qt: Disable x86 build slice for Qt6
Browse files Browse the repository at this point in the history
  • Loading branch information
PatTheMav committed Sep 11, 2023
1 parent 3d5d5bd commit 7a64c34
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions deps.qt/qt6.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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 = @(
Expand Down Expand Up @@ -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])",''
Expand Down Expand Up @@ -200,7 +199,6 @@ function Qt-Add-Submodules {

$CMakeTarget = @{
x64 = 'x64'
x86 = 'Win32'
}

$QtComponents | Where-Object { $_ -ne 'qtbase' } | ForEach-Object {
Expand Down

0 comments on commit 7a64c34

Please sign in to comment.