GrabBag/GrabBagPrj/pkg_cloudview.bat

28 lines
587 B
Batchfile
Raw Normal View History

2026-01-16 01:04:43 +08:00
@echo off
setlocal
REM Windows packaging tool directories (system environment variables):
REM QT_PATH=D:\Qt\5.15.2
REM ISCC_PATH=C:\Program Files\Inno Setup 7
2026-06-26 17:49:32 +08:00
set PRJ_PATH=%~dp0
set PRJ_PATH=%PRJ_PATH:~0,-1%
2026-01-16 01:04:43 +08:00
if not exist "%PRJ_PATH%\buildwin\CloudView" mkdir "%PRJ_PATH%\buildwin\CloudView"
cd /d "%PRJ_PATH%\buildwin\CloudView"
powershell -Command "Remove-Item * -Recurse -Force"
2026-02-22 00:10:46 +08:00
copy "..\..\build\Utils\CloudView\release\CloudView.exe" .\
2026-01-16 01:04:43 +08:00
"%QT_PATH%\msvc2019_64\bin\windeployqt.exe" "CloudView.exe"
2026-01-16 01:04:43 +08:00
cd ..\..
"%ISCC_PATH%\ISCC.exe" "CloudView.iss"
2026-01-16 01:04:43 +08:00
echo "finish"
endlocal