blob: 9fb9d13b41b23f8cf665897d1ee4613200b3c97c (
plain)
1
2
3
4
5
6
|
Write-Host "Installing Choco"
Invoke-Expression ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1'))
Write-Host "Installing Choco packages"
choco install -y cmake --installargs 'ADD_CMAKE_TO_PATH=System'
choco install -y git --params "/NoAutoCrlf /NoCredentialManager /NoShellHereIntegration /NoGuiHereIntegration /NoShellIntegration"
choco install -y python3 git-lfs 7zip
|