Files
oboe/.github/workflows/scripts/win/zlib-build.bat
2024-07-17 17:11:50 -06:00

10 lines
373 B
Batchfile

vcpkg integrate install
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 -property:VcpkgEnableManifest=true "deps/zlib/build/zlib.sln"
exit /b !errorlevel!
)