Last active
April 28, 2025 14:57
-
-
Save todashuta/eb79ee5e63957cd97d9db02321096e8e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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