iw7-mod/installer/compile.bat

21 lines
262 B
Batchfile
Raw Permalink Normal View History

2024-08-13 05:22:55 -04:00
@echo off
cd /D "%~dp0"
2024-08-13 05:22:55 -04:00
if not exist "build" mkdir "build"
2024-08-13 22:50:40 -04:00
"tools\makensis.exe" "iw7_Installer.nsi"
if %ERRORLEVEL% neq 0 (
echo.s
echo Compilation failed!
echo.
pause
exit /b %ERRORLEVEL%
)
2024-08-13 22:50:40 -04:00
echo.
echo Compiled successfully!
echo.
pause