openvg/openvgrefimplementation/sfopenvg/group/egl.mmp
changeset 43 7579f232bae7
child 216 b87045f2f5d7
equal deleted inserted replaced
36:01a6848ebfd7 43:7579f232bae7
       
     1 /*
       
     2 * Copyright (c) 2009 Symbian Foundation Ltd
       
     3 * This component and the accompanying materials are made available
       
     4 * under the terms of the License "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 * Symbian Foundation Ltd - initial contribution.
       
    10 * 
       
    11 * Contributors:
       
    12 *
       
    13 * Description:
       
    14 * egl mmp file
       
    15 */
       
    16 
       
    17 #include <egl\egluids.hrh> // For uids
       
    18 
       
    19 target          libEGL_sw.dll 		// Destination filename
       
    20 
       
    21 targettype      dll				// Binary build type
       
    22 uid             KUidSharedDllUidValue KUidEGLDllUidValue		// File uids
       
    23 VENDORID 0x70000001
       
    24 CAPABILITY	ALL -tcb
       
    25 //noexportlibrary
       
    26 
       
    27 userinclude     ..\sfopenvg\include //for internal egl functions e.g. do_eglXXX
       
    28 
       
    29 OS_LAYER_SYSTEMINCLUDE
       
    30 OS_LAYER_LIBC_SYSTEMINCLUDE
       
    31 SYSTEMINCLUDE  OS_LAYER_PUBLIC_EXPORT_PATH(egl) // EGL include files
       
    32 
       
    33 
       
    34 
       
    35 sourcepath      ..\egl		// Relative path to source files
       
    36 
       
    37 
       
    38 source          egl.cpp
       
    39 
       
    40 
       
    41 library         euser.lib     		// Mandatory
       
    42 library			sflibopenvgrefimpl.lib
       
    43 
       
    44 
       
    45 #ifdef WINS
       
    46 DEFFILE         \epoc32\include\def\win32\libegl13.def	// WINS/WINSCW def file
       
    47 #else
       
    48 DEFFILE         \epoc32\include\def\eabi\libegl13.def	// ARM def file
       
    49 #endif // WINS
       
    50