configtool/preinstall/cli.cmd
author terytkon
Wed, 02 Jun 2010 10:50:41 +0300
changeset 1 fe41c66bacc7
parent 0 30eb2d538f02
permissions -rw-r--r--
Changed rest of the sfl licences to epl :)

@echo off
rem
rem Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies).
rem All rights reserved.
rem This component and the accompanying materials are made available
rem under the terms of "Eclipse Public License v1.0"
rem which accompanies this distribution, and is available
rem at the URL "http://www.eclipse.org/legal/epl-v10.html".
rem
rem Initial Contributors:
rem Nokia Corporation - initial contribution.
rem
rem Contributors:
rem
rem Description:
rem



REM set the eclipse params
REM application to CLI 
REM noSplash screen
REM unrem the following line if you want all output to console
REM set CONSOLE_LOG=-consoleLog
setlocal
set path=%path%;\s60\tools\toolsextensions\ConfigurationTool

set ECLIPSE_PARAMS=-application com.nokia.S60CT.CLI.application -noSplash %CONSOLE_LOG% --launcher.suppressErrors

REM set all the command line params to variable 
set COMMAND_LINE_PARAMS=%*

REM The final call, pass the eclipse params and all command line params
S60CLI.EXE %ECLIPSE_PARAMS% %COMMAND_LINE_PARAMS%
endlocal
exit /b %errorlevel%