e1498deaa8
Windows: * read Boost version from AppVeyor.yml * init submodules from build-local.bat
7 lines
206 B
PowerShell
7 lines
206 B
PowerShell
$ErrorActionPreference = 'Stop'
|
|
$boost_version='0'
|
|
Get-Content .\appveyor.yml |
|
|
foreach {
|
|
if ($_ -match "BOOST_VERSION: "){ $boost_version = $_.split()[-1] }
|
|
}
|
|
Write-Host $boost_version
|