mirror of
git://code.qt.io/qt/qt5.git
synced 2026-02-01 19:36:04 +08:00
Replace the current license disclaimer in files by a SPDX-License-Identifier. License files are organized under LICENSES directory. Pick-to: 6.5 6.6 Task-number: QTBUG-67283 Task-number: QTBUG-108364 Change-Id: If26e4d35c780db4a7982bb84872b251dad24716e Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
37 lines
1.2 KiB
PowerShell
37 lines
1.2 KiB
PowerShell
# Copyright (C) 2017 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
|
|
|
|
. "$PSScriptRoot\helpers.ps1"
|
|
|
|
# This script will install Dependency Walker 2.2.6000
|
|
|
|
$version = "2.2.6000"
|
|
if (Is64BitWinHost) {
|
|
$arch = "_x64"
|
|
$sha1 = "4831D2A8376D64110FF9CD18799FE6C69509D3EA"
|
|
} else {
|
|
$arch = "_x86"
|
|
$sha1 = "bfec714057e8449b0246051be99ba46a7760bab9"
|
|
}
|
|
$url_cache = "\\ci-files01-hki.ci.qt.io\provisioning\windows\depends22" + $arch + ".zip"
|
|
$url_official = "http://www.dependencywalker.com/depends22" + $arch + ".zip"
|
|
$dependsPackage = "C:\Windows\Temp\depends-$version.zip"
|
|
|
|
$TARGETDIR = "C:\Utils\dependencywalker"
|
|
if (!(Test-Path -Path $TARGETDIR )) {
|
|
New-Item -ItemType directory -Path $TARGETDIR
|
|
}
|
|
Download $url_official $url_cache $dependsPackage
|
|
Verify-Checksum $dependsPackage $sha1
|
|
|
|
Extract-7Zip $dependsPackage $TARGETDIR
|
|
|
|
# Copy the content also into the cache location of nuitka
|
|
# This makes it usable without the need to download it again
|
|
Copy-Item -Path $TARGETDIR -Destination "$env:LOCALAPPDATA\Nuitka\Nuitka\Cache\downloads\depends\x86_64" -Recurse
|
|
|
|
Write-Host "Cleaning $dependsPackage.."
|
|
Remove "$dependsPackage"
|
|
|
|
Write-Output "Dependency Walker = $version" >> ~\versions.txt
|