aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorMikhail Paulyshka <me@mixaill.tk>2017-07-25 04:07:08 +0300
committerMikhail Paulyshka <me@mixaill.tk>2017-07-25 04:07:08 +0300
commit5d86005aa7a25f192d6a3023423e2977bcef7367 (patch)
treed11e685ac59a6c55947c0f8159a06c72ee55073c /scripts
parentb277b4dda3a2793fd59a6cca5de96f8bc65f1357 (diff)
downloadvcpkg-5d86005aa7a25f192d6a3023423e2977bcef7367.tar.gz
vcpkg-5d86005aa7a25f192d6a3023423e2977bcef7367.zip
cmake: update to 3.9
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 b6144d581..eecd7fe5a 100644
--- a/scripts/fetchDependency.ps1
+++ b/scripts/fetchDependency.ps1
@@ -151,12 +151,12 @@ function SelectProgram([Parameter(Mandatory=$true)][string]$Dependency)
if($Dependency -eq "cmake")
{
- $requiredVersion = "3.8.0"
- $downloadVersion = "3.8.0"
- $url = "https://cmake.org/files/v3.8/cmake-3.8.0-win32-x86.zip"
- $downloadPath = "$downloadsDir\cmake-3.8.0-win32-x86.zip"
- $expectedDownloadedFileHash = "857fca00974ad6ac12fa042373d85ad1288770d4f09fbd99753c822df76b1c6c"
- $executableFromDownload = "$downloadsDir\cmake-3.8.0-win32-x86\bin\cmake.exe"
+ $requiredVersion = "3.9.0"
+ $downloadVersion = "3.9.0"
+ $url = "https://cmake.org/files/v3.9/cmake-3.9.0-win32-x86.zip"
+ $downloadPath = "$downloadsDir\cmake-3.9.0-win32-x86.zip"
+ $expectedDownloadedFileHash = "9d593839f64b94718a1b75b8519b56ecb959e4d37d406bf2a087e2c1f7a6b89c"
+ $executableFromDownload = "$downloadsDir\cmake-3.9.0-win32-x86\bin\cmake.exe"
$extractionType = $ExtractionType_ZIP
$extractionFolder = $downloadsDir
}