0
|
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 |
@rem ---------------------------------------------------------------------
|
|
17 |
@rem This batch-file executes certain hardcoded tweaks to S60 example
|
|
18 |
@rem applications (moving, renaming and deleting) and also executes
|
|
19 |
@rem example application documentation generation.
|
|
20 |
@rem ---------------------------------------------------------------------
|
|
21 |
|
|
22 |
rem Finalizing S60 examples...
|
|
23 |
cd \Series60SDK_dev\ExamplesCpp
|
|
24 |
|
|
25 |
rem Move BrowserSamples to parent directory...
|
|
26 |
|
|
27 |
move S60Ex\BrowserSamples\BrCtlSampleApp S60Ex\
|
|
28 |
move S60Ex\BrowserSamples\NPBitmap S60Ex\
|
|
29 |
rmdir /s /q S60Ex\BrowserSamples
|
|
30 |
|
|
31 |
rem Delete RGA-examples...
|
|
32 |
@rem ---------------------------------------------------------------------
|
|
33 |
@rem Currently RGA APIs are not published either in 3.2 or 5.0.
|
|
34 |
@rem Therefore the RGA-examples are removed.
|
|
35 |
@rem ---------------------------------------------------------------------
|
|
36 |
if exist S60Ex\rga_ex ( rmdir /s /q S60Ex\rga_ex )
|
|
37 |
|
|
38 |
@rem ---------------------------------------------------------------------
|
|
39 |
@rem Just to maintain look-and-feel as it was in 3.2 SDK
|
|
40 |
@rem ---------------------------------------------------------------------
|
|
41 |
|
|
42 |
rename S60Ex\s60opencex OpenC_Ex
|
|
43 |
rename S60Ex\s60opencppex OpenCpp_Ex
|
|
44 |
|
|
45 |
|
|
46 |
rem Generate Doxygen documentation
|
|
47 |
@rem ---------------------------------------------------------------------
|
|
48 |
@rem Location examples have Doc-dir instead of doc-dir. doxy.pl-script
|
|
49 |
@rem apparently does case-sensitive checks and does not generate documents
|
|
50 |
@rem for Doc-directories. Hence we rename those 4 directories first.
|
|
51 |
@rem ---------------------------------------------------------------------
|
|
52 |
|
|
53 |
rename S60Ex\LocationLandmarksRefAppForS60\Doc doc
|
|
54 |
rename S60Ex\LocationLandmarksUIRefApp\Doc doc
|
|
55 |
rename S60Ex\LocationRefAppForS60\Doc doc
|
|
56 |
rename S60Ex\LocationSatViewRefApp\Doc doc
|
|
57 |
|
|
58 |
cd \Series60SDK_dev\ExamplesCpp\Doxyfiles\
|
|
59 |
perl doxy.pl doxy.conf
|
|
60 |
|
|
61 |
rem S60Ex finalizing done.
|