os/graphics/fbs/fontandbitmapserver/trasterizer/test/scripts/rasterizer_winscw_install.bat
First public contribution.
1 rem Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
2 rem All rights reserved.
3 rem This component and the accompanying materials are made available
4 rem under the terms of "Eclipse Public License v1.0"
5 rem which accompanies this distribution, and is available
6 rem at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 rem Initial Contributors:
9 rem Nokia Corporation - initial contribution.
27 echo Test Extended Bitmap rasterizer installer for winscw
29 echo Usage: rasterizer_winscw_install.bat [install_flag]
31 echo install_flag: install or uninstall
37 set TEST_EB_RASTERIZER=fbsrasterizer_test.dll
41 if "%INSTALL_FLAG%"=="install" call :rasterizer_install & goto :EOF
42 if "%INSTALL_FLAG%"=="uninstall" call :rasterizer_uninstall & goto :EOF
47 if not exist "%EPOC_INI%" echo ERROR: %EPOC_INI% does not exist & call :help & goto :EOF
49 if exist "%EPOC_INI%.rasterizer.bak" del %EPOC_INI% >NUL
50 if exist "%EPOC_INI%.rasterizer.bak" copy %EPOC_INI%.rasterizer.bak %EPOC_INI% >NUL
51 if not exist "%EPOC_INI%.rasterizer.bak" copy %EPOC_INI% %EPOC_INI%.rasterizer.bak >NUL
52 echo INFO: Modifying %EPOC_INI% for test Extended Bitmap rasterizer
54 echo FBSRASTERIZER_DLL %TEST_EB_RASTERIZER% >> %EPOC_INI%
58 if exist "%EPOC_INI%.rasterizer.bak" del %EPOC_INI% >NUL
59 echo INFO: Restoring %EPOC_INI%.rasterizer.bak to %EPOC_INI%
60 if exist "%EPOC_INI%.rasterizer.bak" copy %EPOC_INI%.rasterizer.bak %EPOC_INI% >NUL
61 if exist "%EPOC_INI%.rasterizer.bak" del %EPOC_INI%.rasterizer.bak >NUL
66 echo =======================================
67 echo files after %0 %1
68 echo =======================================
69 echo epoc.ini: %EPOC_INI%
70 echo =======================================
72 echo =======================================