mirror of
git://code.qt.io/qt/qt5.git
synced 2026-01-04 22:17:45 +08:00
Replace the current license disclaimer in files by
a SPDX-License-Identifier.
License files are organized under LICENSES directory.
Task-number: QTBUG-67283
Task-number: QTBUG-108364
Change-Id: If26e4d35c780db4a7982bb84872b251dad24716e
Reviewed-by: Joerg Bornemann <joerg.bornemann@qt.io>
(cherry picked from commit eecfb19548)
33 lines
1.0 KiB
PowerShell
33 lines
1.0 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.intra.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
|
|
|
|
Write-Host "Cleaning $dependsPackage.."
|
|
Remove "$dependsPackage"
|
|
|
|
Write-Output "Dependency Walker = $version" >> ~\versions.txt
|