Skip to content

Instantly share code, notes, and snippets.

@todashuta
Last active April 28, 2025 14:57
Show Gist options
  • Save todashuta/eb79ee5e63957cd97d9db02321096e8e to your computer and use it in GitHub Desktop.
Save todashuta/eb79ee5e63957cd97d9db02321096e8e to your computer and use it in GitHub Desktop.
@echo off
pushd %~dp0
rem git fetch origin
rem git merge FETCH_HEAD
rem pause
cd src
call .\msvc2022.bat x64
del /q /s .\ObjGXAMD64\*
nmake -f Make_mvc.mak clean
nmake -f Make_mvc.mak GUI=yes
if errorlevel 1 (
goto ERR
)
goto EOF
:EOF
popd
exit /b 0
:ERR
popd
pause
exit /b 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment