8 lines
313 B
Batchfile
8 lines
313 B
Batchfile
|
|
setlocal enabledelayedexpansion
|
|
|
|
for /f "usebackq tokens=*" %%i in (`vswhere -latest -requires Microsoft.Component.MSBuild -find MSBuild\**\Bin\MSBuild.exe`) do (
|
|
"%%i" -clp:ForceConsoleColor -target:Build -property:Configuration=Release -property:Platform=%1 "deps/zlib/build/zlib.sln"
|
|
exit /b !errorlevel!
|
|
)
|