1 Star 0 Fork 4

tt56039/Inno Setup

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
build.bat 1.51 KB
一键复制 编辑 原始数据 按行查看 历史
Martijn Laan 提交于 2021-04-08 21:03 . Bump to 6.2.0 instead of 6.1.3.
@echo off
rem Inno Setup
rem Copyright (C) 1997-2019 Jordan Russell
rem Portions by Martijn Laan
rem For conditions of distribution and use, see LICENSE.TXT.
rem
rem Batch file to prepare a release
rem
rem Calls setup-sign.bat if it exists, else creates setup.exe without signing
rem
rem This batch files does the following things:
rem -Compile ISPP.chm
rem -Compile ISetup.chm
rem -Compile Inno Setup
rem -Create Inno Setup installer
rem
rem Once done the installer can be found in Output
setlocal
set VER=6.2.0
echo Building Inno Setup %VER%...
echo.
cd /d %~dp0
if "%1%"=="setup" goto setup
if not "%1%"=="" goto failed
cd projects\ispp\help
if errorlevel 1 goto failed
call .\compile.bat
if errorlevel 1 goto failed
cd ..\..\..
if errorlevel 1 goto failed
echo Compiling ISPP.chm done
pause
cd ishelp
if errorlevel 1 goto failed
call .\compile.bat
if errorlevel 1 goto failed
cd ..
if errorlevel 1 goto failed
echo Compiling ISetup.chm done
pause
call .\compile.bat
if errorlevel 1 goto failed
echo Compiling Inno Setup done
pause
:setup
echo - Setup.exe
if exist .\setup-sign.bat (
call .\setup-sign.bat
) else (
files\iscc setup.iss
)
if errorlevel 1 goto failed
echo - Renaming files
cd output
if errorlevel 1 goto failed
move /y mysetup.exe innosetup-%VER%.exe
if errorlevel 1 goto failed
cd ..
if errorlevel 1 goto failed
echo Creating Inno Setup installer done
echo All done!
pause
exit /b 0
:failed
echo *** FAILED ***
pause
exit /b 1
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/tt56039/issrc.git
git@gitee.com:tt56039/issrc.git
tt56039
issrc
Inno Setup
main

搜索帮助

0d507c66 1850385 C8b1a773 1850385