1 rem |
|
2 rem Copyright (c) 2009 Nokia Corporation and/or its subsidiary(-ies). |
|
3 rem All rights reserved. |
|
4 rem This component and the accompanying materials are made available |
|
5 rem under the terms of "Eclipse Public License v1.0" |
|
6 rem which accompanies this distribution, and is available |
|
7 rem at the URL "http://www.eclipse.org/legal/epl-v10.html". |
|
8 rem |
|
9 rem Initial Contributors: |
|
10 rem Nokia Corporation - initial contribution. |
|
11 rem |
|
12 rem Contributors: |
|
13 rem |
|
14 rem Description: |
|
15 rem |
|
16 |
|
17 @echo off |
|
18 |
|
19 SETLOCAL |
|
20 |
|
21 SET THEME_DEST_C_UDEB_DIR=%EPOCROOT%epoc32\RELEASE\winscw\udeb\z\private\10207254\themes\271012080\270513751 |
|
22 SET THEME_DEST_C_UREL_DIR=%EPOCROOT%epoc32\RELEASE\winscw\urel\z\private\10207254\themes\271012080\270513751 |
|
23 SET THEME_DEST_Z_DIR=%EPOCROOT%epoc32\data\z\private\10207254\themes\271012080\270513751 |
|
24 |
|
25 echo Copying Active Idle binary themes |
|
26 echo ********************************* |
|
27 if not exist %THEME_DEST_C_UDEB_DIR%\271063149\1.0\sources mkdir %THEME_DEST_C_UDEB_DIR%\271063149\1.0\sources |
|
28 copy ..\activeidlethemes\binarythemes\activeidle\AI.* %THEME_DEST_C_UDEB_DIR%\271063149\1.0\ |
|
29 copy ..\activeidlethemes\themes\activeidle\*.mif %THEME_DEST_C_UDEB_DIR%\271063149\1.0\sources\ |
|
30 if not exist %THEME_DEST_C_UREL_DIR%\271063149\1.0\sources mkdir %THEME_DEST_C_UREL_DIR%\271063149\1.0\sources |
|
31 copy ..\activeidlethemes\binarythemes\activeidle\AI.* %THEME_DEST_C_UREL_DIR%\271063149\1.0\ |
|
32 copy ..\activeidlethemes\themes\activeidle\*.mif %THEME_DEST_C_UREL_DIR%\271063149\1.0\sources\ |
|
33 if not exist %THEME_DEST_Z_DIR%\271063149\1.0\sources mkdir %THEME_DEST_Z_DIR%\271063149\1.0\sources |
|
34 copy ..\activeidlethemes\binarythemes\activeidle\AI.* %THEME_DEST_Z_DIR%\271063149\1.0\ |
|
35 copy ..\activeidlethemes\themes\activeidle\*.mif %THEME_DEST_Z_DIR%\271063149\1.0\sources\ |
|
36 |
|
37 echo Copying Classic Idle binary themes |
|
38 echo ********************************** |
|
39 if not exist %THEME_DEST_C_UDEB_DIR%\271063147\1.0\sources mkdir %THEME_DEST_C_UDEB_DIR%\271063147\1.0\sources |
|
40 copy ..\activeidlethemes\binarythemes\classicidle\CI.* %THEME_DEST_C_UDEB_DIR%\271063147\1.0\ |
|
41 copy ..\activeidlethemes\themes\classicidle\*.mif %THEME_DEST_C_UDEB_DIR%\271063147\1.0\sources\ |
|
42 if not exist %THEME_DEST_C_UREL_DIR%\271063147\1.0\sources mkdir %THEME_DEST_C_UREL_DIR%\271063147\1.0\sources |
|
43 copy ..\activeidlethemes\binarythemes\classicidle\CI.* %THEME_DEST_C_UREL_DIR%\271063147\1.0\ |
|
44 copy ..\activeidlethemes\themes\classicidle\*.mif %THEME_DEST_C_UREL_DIR%\271063147\1.0\sources\ |
|
45 if not exist %THEME_DEST_Z_DIR%\271063147\1.0\sources mkdir %THEME_DEST_Z_DIR%\271063147\1.0\sources |
|
46 copy ..\activeidlethemes\binarythemes\classicidle\CI.* %THEME_DEST_Z_DIR%\271063147\1.0\ |
|
47 copy ..\activeidlethemes\themes\classicidle\*.mif %THEME_DEST_Z_DIR%\271063147\1.0\sources |
|
48 |
|
49 ENDLOCAL |
|