Files
runner-images-temp/images/win/scripts/Installers/Validate-Cmake.ps1
T

17 lines
359 B
PowerShell
Raw Normal View History

################################################################################
## File: Validate-Cmake.ps1
## Desc: Validate Cmake
################################################################################
if(Get-Command -Name 'cmake')
{
2020-04-01 19:41:16 +04:00
Write-Host "CMake $(cmake -version) on path"
}
else
{
Write-Host "CMake not on path"
exit 1
}