sl@0
|
1 |
/*
|
sl@0
|
2 |
* Copyright (c) 2009 Symbian Foundation Ltd
|
sl@0
|
3 |
* This component and the accompanying materials are made available
|
sl@0
|
4 |
* under the terms of the License "Eclipse Public License v1.0"
|
sl@0
|
5 |
* which accompanies this distribution, and is available
|
sl@0
|
6 |
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
*
|
sl@0
|
8 |
* Initial Contributors:
|
sl@0
|
9 |
* Symbian Foundation Ltd - initial contribution.
|
sl@0
|
10 |
*
|
sl@0
|
11 |
* Contributors:
|
sl@0
|
12 |
*
|
sl@0
|
13 |
* Description:
|
sl@0
|
14 |
* openvgu mmp file
|
sl@0
|
15 |
*/
|
sl@0
|
16 |
#include <vg\openvguids.hrh> // For uids
|
sl@0
|
17 |
|
sl@0
|
18 |
target libopenvgu_sw.dll // Destination filename
|
sl@0
|
19 |
targettype dll // Binary build type
|
sl@0
|
20 |
uid KUidSharedDllUidValue KUidVGUDllUidValue // File uids
|
sl@0
|
21 |
CAPABILITY CAP_GENERAL_DLL
|
sl@0
|
22 |
vendorid 0x70000001
|
sl@0
|
23 |
//noexportlibrary
|
sl@0
|
24 |
|
sl@0
|
25 |
userinclude ..\sfopenvg\include //for internal egl functions e.g. do_eglXXX
|
sl@0
|
26 |
|
sl@0
|
27 |
OS_LAYER_SYSTEMINCLUDE
|
sl@0
|
28 |
SYSTEMINCLUDE OS_LAYER_PUBLIC_EXPORT_PATH(vg) // EGL include files
|
sl@0
|
29 |
|
sl@0
|
30 |
macro __OPENVGHEADERS_USE_VG_1_1
|
sl@0
|
31 |
|
sl@0
|
32 |
sourcepath ..\openvgu // Relative path to source files
|
sl@0
|
33 |
|
sl@0
|
34 |
source vgu.cpp
|
sl@0
|
35 |
|
sl@0
|
36 |
library euser.lib // Mandatory
|
sl@0
|
37 |
library sflibopenvgrefimpl.lib
|
sl@0
|
38 |
|
sl@0
|
39 |
#ifdef WINS
|
sl@0
|
40 |
DEFFILE \epoc32\include\def\win32\libopenvgu11.def // WINS/WINSCW def file
|
sl@0
|
41 |
#else
|
sl@0
|
42 |
DEFFILE \epoc32\include\def\eabi\libopenvgu11.def // ARM def file
|
sl@0
|
43 |
#endif // WINS
|
sl@0
|
44 |
|