iwmake.bat
来自「奇趣公司比较新的qt/emd版本」· Batch 代码 · 共 120 行
BAT
120 行
::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::: Copyright (C) 2007-2007 Trolltech ASA. All rights reserved.:::: This file is part of the Windows installer of the Qt Toolkit.:::: This file may be used under the terms of the GNU General Public:: License version 2.0 as published by the Free Software Foundation:: and appearing in the file LICENSE.GPL included in the packaging of:: this file. Please review the following information to ensure GNU:: General Public Licensing requirements will be met::: http://trolltech.com/products/qt/licenses/licensing/opensource/:::: If you are unsure which license is appropriate for your use, please:: review the following information::: http://trolltech.com/products/qt/licenses/licensing/licensingoverview:: or contact the sales department at sales@trolltech.com.:::: In addition, as a special exception, Trolltech gives you certain:: additional rights. These rights are described in the Trolltech GPL:: Exception version 1.0, which can be found at:: http://www.trolltech.com/products/qt/gplexception/ and in the file:: GPL_EXCEPTION.txt in this package.:::: In addition, as a special exception, Trolltech, as the sole copyright:: holder for Qt Designer, grants users of the Qt/Eclipse Integration:: plug-in the right for the Qt/Eclipse Integration to link to:: functionality provided by Qt Designer and its related libraries.:::: Trolltech reserves all rights not expressly granted herein.:::: This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE:: WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::rem @echo offcall :initif "%IWMAKE_STATUS%"=="failed" goto FAILEDif not exist "%IWMAKE_SCRIPTDIR%\config\%1.conf" goto FAILEDif not "%~2"=="" set IWMAKE_SECTION=%~2for /F "eol=# tokens=1,2*" %%i in (%IWMAKE_SCRIPTDIR%\config\config.default) do set IWMAKE_TMP=%%k& call :func_delegate %%i %%jif "%IWMAKE_STATUS%"=="failed" goto FAILEDif exist "%IWMAKE_SCRIPTDIR%\config\config.%COMPUTERNAME%" for /F "eol=# tokens=1,2*" %%i in (%IWMAKE_SCRIPTDIR%\config\config.%COMPUTERNAME%) do set IWMAKE_TMP=%%k& call :func_delegate %%i %%jif "%IWMAKE_STATUS%"=="failed" goto FAILEDcall :checkrequirementsif "%IWMAKE_STATUS%"=="failed" goto FAILEDfor /F "eol=# tokens=1,2*" %%i in (%IWMAKE_SCRIPTDIR%\config\%1.conf) do set IWMAKE_TMP=%%k& call :func_delegate %%i %%jif "%IWMAKE_STATUS%"=="failed" goto FAILEDgoto DONE:func_delegateif "%IWMAKE_STATUS%"=="failed" goto :eofset IWMAKE_TMP="%IWMAKE_TMP:"=%"if /i "%1"=="sectionend" echo Leaving Section& set IWMAKE_PARSESECTION=1& goto :eofif /i not "%1"=="section" goto callScriptecho Entering Section %~2for %%m in (%IWMAKE_SECTION%) do call :checkSection %%m %~2goto :eof:callScriptif "%IWMAKE_PARSESECTION%"=="0" goto :eofcall "%IWMAKE_SCRIPTDIR%\batch\%1.bat" %2 %IWMAKE_TMP%if not "%errorlevel%"=="0" echo %1 %2 failed! >> %IWMAKE_LOGFILE%& set IWMAKE_STATUS=failedgoto :eof:checkSection if /i "%1"=="%2" echo Skipping Section& set IWMAKE_PARSESECTION=0goto :eof:checkrequirements if not exist %IWMAKE_ROOT% mkdir %IWMAKE_ROOT% if not "%IWMAKE_SIGNPATH%"=="" goto CheckSIGNOK call "%IWMAKE_SCRIPTDIR%\batch\copy.bat" extsync sign call "%IWMAKE_SCRIPTDIR%\batch\env.bat" signPath "%IWMAKE_ROOT%\sign":CheckSIGNOK if not "%IWMAKE_WGET%"=="" goto CheckWGETOK call "%IWMAKE_SCRIPTDIR%\batch\copy.bat" extsync wget call "%IWMAKE_SCRIPTDIR%\batch\env.bat" wgetDir wget:CheckWGETOK if exist "%IWMAKE_PERLPATH%\perl.exe" goto CheckPerlOK set IWMAKE_STATUS=failed echo Perl not found in %IWMAKE_PERLPATH%! (check your config file):CheckPerlOK if not "%IWMAKE_UNZIPAPP%"=="" goto CheckUNZIPOK call "%IWMAKE_SCRIPTDIR%\batch\copy.bat" extsync unzip call "%IWMAKE_SCRIPTDIR%\batch\env.bat" unzipApp "%IWMAKE_ROOT%\unzip\unzip.exe":CheckUNZIPOK if exist "%IWMAKE_NSISPATH%\makensis.exe" goto CheckNSISOK set IWMAKE_STATUS=failed echo NSIS not found! (check your config file):CheckNSISOK call "%IWMAKE_SCRIPTDIR%\batch\installer.bat" updatepluginsgoto :eof:init set IWMAKE_SCRIPTDIR=%~dp0 set IWMAKE_SCRIPTDIR=%IWMAKE_SCRIPTDIR:~0,-1% call "%IWMAKE_SCRIPTDIR%\batch\env.bat" setglobalsgoto :eof:cleanup pushd "%IWMAKE_STARTDIR%" call "%IWMAKE_SCRIPTDIR%\batch\env.bat" removeglobals popdgoto :eof:FAILED call :cleanup echo Failed!goto END:DONE call :cleanup echo Done!goto END:END
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?