- [NEW] Scripts de publicació

This commit is contained in:
2026-05-04 18:12:10 +02:00
parent 6103225969
commit 8bcd70a943
5 changed files with 116 additions and 2 deletions

20
do_release.bat Normal file
View File

@@ -0,0 +1,20 @@
@echo off
REM Comprobar parámetro
IF "%1"=="" (
echo Uso: build_windows.bat ^<PARAMETRO^>
exit /b 1
)
set PARAM=%1
echo Compilando windows...
g++ main.cpp -O3 -o lagueirto.exe || exit /b 1
echo Creando paquetes...
REM Crear ZIP release con mini.exe + DLLs
tar -a -c -f lagueirto_%PARAM%_win32-x64.zip lagueirto.exe || exit /b 1
echo Paquetes generados:
echo lagueirto_%PARAM%_win32-x64.zip