buildsis_s60.bat
来自「symbian 上的stl_port进过编译的。」· Batch 代码 · 共 38 行
BAT
38 行
@echo off
if {%1} == {} goto noarg
set SDKDIR=%1
goto process
:noarg
if {%EPOCROOT%} == {} goto noenv
set SDKDIR=%EPOCROOT%
goto process
:noenv
echo You must specify the SDK location. Either define the EPOCROOT environment
echo variable or pass the path name as a command-line argument.
echo Example:
echo.
echo buildsis \Symbian\9.1\S60_3rd_MR\
echo.
echo Remember that the path must NOT include a drive name (i.e. "C:") and it
echo must end with a backslash ("\")
goto end
:process
if {%2} == {debug} goto debug
makesis -d%SDKDIR% testsuite_s60.pkg _stltestsuite.sis
goto sign
:debug
makesis -d%SDKDIR% testsuite_debug_s60.pkg _stltestsuite.sis
goto sign
:sign
signsis -s _stltestsuite.sis stltestsuite_s60.sis self.cer self.key
del _stltestsuite.sis
:end
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?