openvg/openvgrefimplementation/sfopenvg/group/openvg.mmp
changeset 43 7579f232bae7
child 57 2bf8a359aa2f
child 87 0709f76d91e5
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 * openvg mmp file
       
    15 */
       
    16 #include <vg\openvguids.hrh> // For uids
       
    17 
       
    18 target          libopenvg_sw.dll		// Destination filename
       
    19 
       
    20 targettype      dll				// Binary build type
       
    21 uid             KUidSharedDllUidValue KUidOpenVGDllUidValue		// File uids
       
    22 CAPABILITY      ALL -tcb
       
    23 vendorid        0x70000001
       
    24 
       
    25 //noexportlibrary
       
    26 
       
    27 MACRO       __OPENVGHEADERS_USE_VG_1_1
       
    28 
       
    29 userinclude     ..\sfopenvg\include //for internal openvg functions e.g. do_vgXXX
       
    30 
       
    31 OS_LAYER_SYSTEMINCLUDE
       
    32 OS_LAYER_LIBC_SYSTEMINCLUDE
       
    33 SYSTEMINCLUDE  OS_LAYER_PUBLIC_EXPORT_PATH(vg) // EGL include files
       
    34 
       
    35 
       
    36 sourcepath      ..\openvg		// Relative path to source files
       
    37 
       
    38 source openvg.cpp
       
    39 
       
    40 library         euser.lib     		// Mandatory
       
    41 library			sflibopenvgrefimpl.lib
       
    42 
       
    43 #ifdef WINS
       
    44 DEFFILE         \epoc32\include\def\win32\libopenvg11.def	// WINS/WINSCW def file
       
    45 #else
       
    46 DEFFILE         \epoc32\include\def\eabi\libopenvg11.def	// ARM def file
       
    47 #endif // WINS
       
    48 
       
    49 
       
    50