24
|
1 |
// Copyright (c) 2010 Nokia Corporation and/or its subsidiary(-ies).
|
|
2 |
// All rights reserved.
|
|
3 |
// This component and the accompanying materials are made available
|
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
|
5 |
// which accompanies this distribution, and is available
|
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
|
7 |
//
|
|
8 |
// Initial Contributors:
|
|
9 |
// Nokia Corporation - initial contribution.
|
|
10 |
//
|
|
11 |
// Contributors:
|
|
12 |
//
|
|
13 |
// Description:
|
|
14 |
// Project specification file for Guest OpenVG
|
|
15 |
|
|
16 |
#include <platform_paths.hrh>
|
|
17 |
#include <VG/openvguids.hrh> // For uids
|
|
18 |
|
|
19 |
TARGET guestopenvg.dll
|
|
20 |
TARGETTYPE dll
|
|
21 |
LINKAS libopenvg.dll
|
|
22 |
UID KUidSharedDllUidValue KUidOpenVGDllUidValue
|
|
23 |
CAPABILITY CAP_GENERAL_DLL
|
|
24 |
VENDORID VID_DEFAULT
|
|
25 |
|
|
26 |
OS_LAYER_SYSTEMINCLUDE
|
|
27 |
OS_LAYER_ESTLIB_SYSTEMINCLUDE
|
|
28 |
USERINCLUDE ../inc
|
|
29 |
USERINCLUDE ../../vghwutils/inc
|
|
30 |
USERINCLUDE ../../vghwserialiser/inc
|
|
31 |
|
|
32 |
SOURCEPATH ../../vghwserialiser/src
|
|
33 |
SOURCE openvgrfc.cpp
|
|
34 |
|
|
35 |
SOURCEPATH ../src
|
|
36 |
SOURCE openvg.cpp // exported C api for Open VG
|
|
37 |
SOURCE vgapi.cpp // C++ version of Open VG api
|
|
38 |
SOURCE vgstate.cpp
|
|
39 |
SOURCE vghandle.cpp // base behaviour for VGHandle objects
|
|
40 |
SOURCE vgfont.cpp // VGFont specific code
|
|
41 |
SOURCE vgimage.cpp // VGImage specific code
|
|
42 |
SOURCE vgmask.cpp // VGMaskLayer specific code
|
|
43 |
SOURCE vgpaint.cpp // VGPaint specific code
|
|
44 |
SOURCE vgpath.cpp // VGPath specific code
|
|
45 |
|
|
46 |
LIBRARY euser.lib // Mandatory
|
|
47 |
LIBRARY vghwutils.lib
|
|
48 |
LIBRARY guestvideohwapi.lib
|
|
49 |
LIBRARY vghwserialiser.lib
|
|
50 |
LIBRARY libc.lib // for strcmp
|
|
51 |
|
|
52 |
// standard ARM def file baseline for all implementions
|
|
53 |
DEFFILE /epoc32/include/def/eabi/libopenvg11.def
|
|
54 |
|
|
55 |
EPOCALLOWDLLDATA
|