mirror of
git://code.qt.io/qt/qt5.git
synced 2026-04-19 19:46:16 +08:00
The triplet it not used on every x86_64 windows VM. Build it only on windows 11_23_H2-x86_64 where we crosscompile Qt. Change-Id: I5bfd852ac0cdde8d8f1f7b4b46d208f6dc221162 Reviewed-by: Alexandru Croitor <alexandru.croitor@qt.io>
27 lines
992 B
PowerShell
27 lines
992 B
PowerShell
# Copyright (C) 2023 The Qt Company Ltd.
|
|
# SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
|
|
|
|
param([string]$arch="x64")
|
|
|
|
. "$PSScriptRoot\helpers.ps1"
|
|
|
|
Write-Host "Installing vcpkg ports"
|
|
$vcpkgExe = "$env:VCPKG_ROOT\vcpkg.exe"
|
|
$vcpkgRoot = "$env:VCPKG_ROOT"
|
|
|
|
Set-Location -Path "$PSScriptRoot\vcpkg"
|
|
Copy-Item "$PSScriptRoot\..\shared\vcpkg-configuration.json" -Destination "$PSScriptRoot\vcpkg"
|
|
|
|
Run-Executable "$vcpkgExe" "install --triplet $arch-windows-qt --x-install-root $arch-windows-qt-tmp --debug"
|
|
|
|
New-Item -Path "$vcpkgRoot" -Name "installed" -ItemType "directory" -Force
|
|
Copy-Item -Path "$arch-windows-qt-tmp\*" -Destination "$vcpkgRoot\installed" -Recurse -Force
|
|
|
|
$versions = jq.exe -r '.overrides[] | \"vcpkg \(.name) = \(.version)\"' vcpkg.json
|
|
$versions = $versions.Replace("vcpkg", "`nvcpkg")
|
|
Write-Output "$versions" >> ~/versions.txt
|
|
|
|
Remove-Item -Path "$arch-windows-qt-tmp" -Recurse -Force
|
|
|
|
Set-Location "$PSScriptRoot"
|