buildsis_uiq.bat

来自「symbian 上的stl_port进过编译的。」· Batch 代码 · 共 29 行

BAT
29
字号
@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\UIQ3SDK\
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
makesis -d%SDKDIR% testsuite_uiq.pkg _stltestsuite.sis
signsis -s _stltestsuite.sis stltestsuite_uiq.sis self.cer self.key
del _stltestsuite.sis

:end

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?