aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorMikhail Paulyshka <me@mixaill.tk>2017-11-26 14:18:35 +0300
committerAlexander Karatarakis <alex@karatarakis.com>2017-11-26 03:18:35 -0800
commite009618ba0850ef54e837e8fb76910245d99b456 (patch)
tree7c4629b3628ffa4ad43d5403e0063462b59bb02e /scripts
parent2af7fe8690a9b78f1eab1e532670ed133f82aff9 (diff)
downloadvcpkg-e009618ba0850ef54e837e8fb76910245d99b456.tar.gz
vcpkg-e009618ba0850ef54e837e8fb76910245d99b456.zip
[cmake] update to 3.10.0 (#2236)
Diffstat (limited to 'scripts')
-rw-r--r--scripts/fetchDependency.ps112
1 files changed, 6 insertions, 6 deletions
diff --git a/scripts/fetchDependency.ps1 b/scripts/fetchDependency.ps1
index 6e022928f..744439bb7 100644
--- a/scripts/fetchDependency.ps1
+++ b/scripts/fetchDependency.ps1
@@ -20,12 +20,12 @@ function SelectProgram([Parameter(Mandatory=$true)][string]$Dependency)
if($Dependency -eq "cmake")
{
- $requiredVersion = "3.9.5"
- $downloadVersion = "3.9.5"
- $url = "https://cmake.org/files/v3.9/cmake-3.9.5-win32-x86.zip"
- $downloadPath = "$downloadsDir\cmake-3.9.5-win32-x86.zip"
- $expectedDownloadedFileHash = "dd3e183254c12f7c338d3edfa642f1ac84a763b8b9a2feabb4ad5fccece5dff9"
- $executableFromDownload = "$downloadsDir\cmake-3.9.5-win32-x86\bin\cmake.exe"
+ $requiredVersion = "3.10.0"
+ $downloadVersion = "3.10.0"
+ $url = "https://cmake.org/files/v3.10/cmake-3.10.0-win32-x86.zip"
+ $downloadPath = "$downloadsDir\cmake-3.10.0-win32-x86.zip"
+ $expectedDownloadedFileHash = "dce666e897f95a88d3eed6cddd1faa3f44179d519b33ca6065b385bbc7072419"
+ $executableFromDownload = "$downloadsDir\cmake-3.10.0-win32-x86\bin\cmake.exe"
$extractionType = $ExtractionType_ZIP
}
elseif($Dependency -eq "nuget")