20 lines
412 B
Batchfile
20 lines
412 B
Batchfile
|
|
@echo off
|
||
|
|
setlocal
|
||
|
|
|
||
|
|
cd /d "c:\project\QT\GrabBag\GrabBagPrj\BeltTearingApp"
|
||
|
|
|
||
|
|
powershell -Command "Remove-Item * -Recurse -Force"
|
||
|
|
|
||
|
|
copy "..\build\BeltTearingApp\release\BeltTearingApp.exe" .\
|
||
|
|
|
||
|
|
"C:\tools\Qt\5.15.2\msvc2019_64\bin\windeployqt.exe" "BeltTearingApp.exe"
|
||
|
|
|
||
|
|
cd ..
|
||
|
|
|
||
|
|
set ISCC_PATH=C:\Program Files (x86)\Inno Setup 6\ISCC.exe
|
||
|
|
|
||
|
|
"%ISCC_PATH%" "BeltTearingApp.iss"
|
||
|
|
|
||
|
|
echo "finish"
|
||
|
|
|
||
|
|
endlocal
|