Skip to content

Instantly share code, notes, and snippets.

@fbudin69500
Last active January 17, 2018 20:10
Show Gist options
  • Save fbudin69500/55f5ed18e8b4edcf58e5106ffc6dadae to your computer and use it in GitHub Desktop.
Save fbudin69500/55f5ed18e8b4edcf58e5106ffc6dadae to your computer and use it in GitHub Desktop.
trap { Write-Error $_; Exit 1 }
if (![System.IO.File]::Exists(".\install-utils.ps1")) {
Write-Host "Download install-utils.ps1"
$url = "https://raw.githubusercontent.com/scikit-build/scikit-ci-addons/master/windows/install-utils.ps1"
$cwd = (Get-Item -Path ".\" -Verbose).FullName
(new-object net.webclient).DownloadFile($url, "$cwd\install-utils.ps1")
}
Import-Module .\install-utils.ps1 -Force
$downloadDir = "C:/Downloads"
if (!$cmakeVersion) {
$cmakeVersion = "3.7.1"
}
$version = $cmakeVersion
$major = [int]$version.Split(".")[0]
$minor = [int]$version.Split(".")[1]
$arch = "win64-x64"
$major
$minor
# win64-x64 archives were introduced with CMake 3.6
if ($major -le 3 -And $minor -lt 6) {
$arch = "win32-x86"
}
$installDir = "C:/cmake-$version"
$major_minor = "$major.$minor"
$archiveName = "cmake-$version-$arch"
if (![System.IO.Directory]::Exists($installDir)) {
Download-URL "https://cmake.org/files/v$major_minor/$archiveName.zip" $downloadDir
Extract-Zip (Join-Path $downloadDir "$archiveName.zip") "$installDir-tmp"
$from = Join-Path "$installDir-tmp" $archiveName
Write-Host "Moving $from to $installDir"
Move-Item $from $installDir
Write-Host "Removing $installDir-tmp"
Remove-Item "$installDir-tmp"
} else {
Write-Host "Skipping installation: Directory [$installDir] already exists"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment