build(gui): add Windows GUI V6 one-click packaging

This commit is contained in:
2026-06-13 09:31:14 +02:00
parent 001606e5bd
commit 19722ceea3
3 changed files with 102 additions and 14 deletions

View File

@@ -0,0 +1,28 @@
@echo off
setlocal
set "SCRIPT_DIR=%~dp0"
set "PS_SCRIPT=%SCRIPT_DIR%scripts\build_windows_oneclick.ps1"
if not exist "%PS_SCRIPT%" (
echo Script PowerShell introuvable : %PS_SCRIPT%
pause
exit /b 1
)
echo Lancement du build Windows GUI V6...
powershell -NoLogo -NoProfile -ExecutionPolicy Bypass -File "%PS_SCRIPT%" -GuiV6
set "EXITCODE=%ERRORLEVEL%"
if not "%EXITCODE%"=="0" (
echo.
echo Le build GUI V6 a echoue. Code retour : %EXITCODE%
pause
exit /b %EXITCODE%
)
echo.
echo Build GUI V6 termine avec succes.
echo Sortie attendue : release\Anonymisation-Setup.exe
pause
exit /b 0