configtool/preinstall/cli.cmd
changeset 0 30eb2d538f02
equal deleted inserted replaced
-1:000000000000 0:30eb2d538f02
       
     1 @echo off
       
     2 rem
       
     3 rem Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
       
     4 rem All rights reserved.
       
     5 rem This component and the accompanying materials are made available
       
     6 rem under the terms of "Eclipse Public License v1.0"
       
     7 rem which accompanies this distribution, and is available
       
     8 rem at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     9 rem
       
    10 rem Initial Contributors:
       
    11 rem Nokia Corporation - initial contribution.
       
    12 rem
       
    13 rem Contributors:
       
    14 rem
       
    15 rem Description:
       
    16 rem
       
    17 
       
    18 
       
    19 
       
    20 REM set the eclipse params
       
    21 REM application to CLI 
       
    22 REM noSplash screen
       
    23 REM unrem the following line if you want all output to console
       
    24 REM set CONSOLE_LOG=-consoleLog
       
    25 setlocal
       
    26 set path=%path%;\s60\tools\toolsextensions\ConfigurationTool
       
    27 
       
    28 set ECLIPSE_PARAMS=-application com.nokia.S60CT.CLI.application -noSplash %CONSOLE_LOG% --launcher.suppressErrors
       
    29 
       
    30 REM set all the command line params to variable 
       
    31 set COMMAND_LINE_PARAMS=%*
       
    32 
       
    33 REM The final call, pass the eclipse params and all command line params
       
    34 S60CLI.EXE %ECLIPSE_PARAMS% %COMMAND_LINE_PARAMS%
       
    35 endlocal
       
    36 exit /b %errorlevel%