os/graphics/openvg/openvgrefimplementation/sfopenvg/group/sfopenvg.mmp
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/graphics/openvg/openvgrefimplementation/sfopenvg/group/sfopenvg.mmp	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,83 @@
     1.4 +/*
     1.5 +* Copyright (c) 2009 Symbian Foundation Ltd
     1.6 +* This component and the accompanying materials are made available
     1.7 +* under the terms of the License "Eclipse Public License v1.0"
     1.8 +* which accompanies this distribution, and is available
     1.9 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +*
    1.11 +* Initial Contributors:
    1.12 +* Symbian Foundation Ltd - initial contribution.
    1.13 +* 
    1.14 +* Contributors:
    1.15 +*
    1.16 +* Description:
    1.17 +* sfopenvg mmp file
    1.18 +*/
    1.19 +#include <vg\openvguids.hrh> // For uids
    1.20 +
    1.21 +target          sflibopenvgrefimpl.dll		// Destination filename
    1.22 +
    1.23 +targettype      dll				// Binary build type
    1.24 +uid             KUidSharedDllUidValue 0x10281CA6		// File uids
    1.25 +CAPABILITY      ALL -tcb
    1.26 +vendorid        0x70000001
    1.27 +
    1.28 +
    1.29 +MACRO       __OPENVGHEADERS_USE_VG_1_1
    1.30 +
    1.31 +MACRO 			USE_NEW_ELEAVE //swictch on to use new(ELeave) rather new in alloc's
    1.32 +					 		   //useful to trap OOM failures
    1.33 +MACRO  		BUILD_WITH_PRIVATE_EGL //enable this to compile this dll exporting the private form of the EGL functions.
    1.34 +								   //These are the ones starting do_XX (e.g. do_eglInitialize).
    1.35 +								   //This should be enabled when you wish to have a separate EGL library (e.g. libegl.dll)
    1.36 +								   //which will export the ELG APIs.
    1.37 +								   //If this macro is supressed then this dll will export the true EGL APIs
    1.38 +								   //see riMiniEgl.cpp
    1.39 +MACRO 		BUILD_WITH_PRIVATE_VGU //same meaning as macro BUILD_WITH_PRIVATE_EGL except applies to the VGU API.
    1.40 +								   //see riVGU.cpp
    1.41 +
    1.42 +MACRO 		BUILD_WITH_PRIVATE_OPENVG //same meaning as macro BUILD_WITH_PRIVATE_EGL except applies to the OpenVG API.
    1.43 +								   //see riAPI.cpp
    1.44 +								   
    1.45 +userinclude     ..\sfopenvg			// Local include files
    1.46 +userinclude     ..\sfopenvg\include			// Local include files
    1.47 +
    1.48 +OS_LAYER_SYSTEMINCLUDE
    1.49 +OS_LAYER_LIBC_SYSTEMINCLUDE
    1.50 +OS_LAYER_STDCPP_SYSTEMINCLUDE
    1.51 +
    1.52 +SYSTEMINCLUDE  OS_LAYER_PUBLIC_EXPORT_PATH(vg) // OpenGL ES include files
    1.53 +SYSTEMINCLUDE  OS_LAYER_PUBLIC_EXPORT_PATH(egl) // EGL include files
    1.54 +
    1.55 +
    1.56 +
    1.57 +sourcepath      ..\sfopenvg		// Relative path to source files
    1.58 +
    1.59 +source riApi.cpp
    1.60 +source riContext.cpp
    1.61 +source riFont.cpp
    1.62 +source riImage.cpp
    1.63 +source riMath.cpp
    1.64 +source riMiniEGL.cpp
    1.65 +source riPath.cpp
    1.66 +source riPixelPipe.cpp
    1.67 +source riRasterizer.cpp
    1.68 +source riVGU.cpp
    1.69 +
    1.70 +//for EGL
    1.71 +SOURCEPATH ..\sfopenvg\symbian
    1.72 +SOURCE riEGLOS.cpp
    1.73 +
    1.74 +library			    libopenvg_sw.lib
    1.75 +library         euser.lib     		// Mandatory
    1.76 +library         fbscli.lib    		// For CFbsBitmap, etc
    1.77 +library         bitgdi.lib    		// For CFbsBitmapDevice, CFbsBitGc, etc
    1.78 +library         ws32.lib      		// For RWindow, Direct Screen Access, etc
    1.79 +library         libstdcpp.lib      		// standard lib
    1.80 +library         libc.lib      		// standard lib
    1.81 +library         libm.lib      		// standard lib
    1.82 +
    1.83 +
    1.84 +
    1.85 +
    1.86 +