perfopts/openvgu.mmp
changeset 70 6b078b83b04a
child 71 20afbbdb50d8
equal deleted inserted replaced
69:1911c0fa3c76 70:6b078b83b04a
       
     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 * openvgu mmp file
       
    15 */
       
    16 #include <vg\openvguids.hrh> // For uids
       
    17 
       
    18 target          libopenvgu_sw.dll		// Destination filename
       
    19 targettype      dll				// Binary build type
       
    20 uid             KUidSharedDllUidValue KUidVGUDllUidValue		// File uids
       
    21 CAPABILITY      CAP_GENERAL_DLL
       
    22 vendorid        0x70000001
       
    23 //noexportlibrary
       
    24 
       
    25 userinclude     ..\sfopenvg\include //for internal egl functions e.g. do_eglXXX
       
    26 
       
    27 OS_LAYER_SYSTEMINCLUDE
       
    28 SYSTEMINCLUDE  OS_LAYER_PUBLIC_EXPORT_PATH(vg) // EGL include files
       
    29 
       
    30 macro __OPENVGHEADERS_USE_VG_1_1
       
    31 
       
    32 sourcepath      ..\openvgu		// Relative path to source files
       
    33 
       
    34 source          vgu.cpp
       
    35 
       
    36 library         euser.lib     		// Mandatory
       
    37 library			sflibopenvgrefimpl.lib
       
    38 
       
    39 #ifdef WINS
       
    40 DEFFILE         \epoc32\include\def\win32\libopenvgu11.def	// WINS/WINSCW def file
       
    41 #else
       
    42 DEFFILE         \epoc32\include\def\eabi\libopenvgu11.def	// ARM def file
       
    43 #endif // WINS
       
    44