aboutsummaryrefslogtreecommitdiffstats
path: root/coin/provisioning/common/windows
diff options
context:
space:
mode:
authorSimon Hausmann <simon.hausmann@qt.io>2019-10-09 16:32:59 +0200
committerLiang Qi <liang.qi@qt.io>2019-11-13 09:57:53 +0000
commit1aa25c10840f702fd9155b3bf394c89817a8e2b9 (patch)
tree45a87c1ac8ddd72db97066ed8225f6cabc3e9ad8 /coin/provisioning/common/windows
parent8eab11f6961f146fa9a4bc9c523504694d880c02 (diff)
Bump vcpkg to a new snapshot
Some patches were upstreamed and this beings the version in line with what we need for Android. This patch also centralizes the version into a shared file, for future use. Change-Id: I90973f9bfcbc1bfeb2d11e2ee7a7fa4e4f6a58a2 Reviewed-by: Qt CMake Build Bot Reviewed-by: Liang Qi <liang.qi@qt.io>
Diffstat (limited to 'coin/provisioning/common/windows')
-rw-r--r--coin/provisioning/common/windows/install-vcpkg.ps19
1 files changed, 6 insertions, 3 deletions
diff --git a/coin/provisioning/common/windows/install-vcpkg.ps1 b/coin/provisioning/common/windows/install-vcpkg.ps1
index 36b0d826..52f1518f 100644
--- a/coin/provisioning/common/windows/install-vcpkg.ps1
+++ b/coin/provisioning/common/windows/install-vcpkg.ps1
@@ -36,15 +36,18 @@
Write-Host "Installing vcpkg"
-$version = "qt-snapshot-2019-06-20"
-$officialUrl = "https://codeload.github.com/tronical/vcpkg/zip/$version"
+$n = Get-Content "$PSScriptRoot\..\shared\vcpkg_version.txt"
+$n = $n.Split('=')
+New-Variable -Name $n[0] -Value $n[1]
+
+$officialUrl = "https://codeload.github.com/tronical/vcpkg/zip/$vcpkg_version"
$zip = "C:\Utils\vcpkg.zip"
Download "$officialUrl" "" "$zip"
Extract-7Zip "$zip" c:\utils
Remove-Item $zip
-$installationFolder = "c:\utils\vcpkg-$version"
+$installationFolder = "c:\utils\vcpkg-$vcpkg_version"
cd $installationFolder