perfopts/openvg.mmp
author markw <markw@symbian.org>
Wed, 20 Oct 2010 10:26:40 +0100
changeset 70 6b078b83b04a
child 71 20afbbdb50d8
permissions -rw-r--r--
Add original MMP files to build the OpenVG reference implementation.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
70
6b078b83b04a Add original MMP files to build the OpenVG reference implementation.
markw <markw@symbian.org>
parents:
diff changeset
     1
/*
6b078b83b04a Add original MMP files to build the OpenVG reference implementation.
markw <markw@symbian.org>
parents:
diff changeset
     2
* Copyright (c) 2009 Symbian Foundation Ltd
6b078b83b04a Add original MMP files to build the OpenVG reference implementation.
markw <markw@symbian.org>
parents:
diff changeset
     3
* This component and the accompanying materials are made available
6b078b83b04a Add original MMP files to build the OpenVG reference implementation.
markw <markw@symbian.org>
parents:
diff changeset
     4
* under the terms of the License "Eclipse Public License v1.0"
6b078b83b04a Add original MMP files to build the OpenVG reference implementation.
markw <markw@symbian.org>
parents:
diff changeset
     5
* which accompanies this distribution, and is available
6b078b83b04a Add original MMP files to build the OpenVG reference implementation.
markw <markw@symbian.org>
parents:
diff changeset
     6
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
6b078b83b04a Add original MMP files to build the OpenVG reference implementation.
markw <markw@symbian.org>
parents:
diff changeset
     7
*
6b078b83b04a Add original MMP files to build the OpenVG reference implementation.
markw <markw@symbian.org>
parents:
diff changeset
     8
* Initial Contributors:
6b078b83b04a Add original MMP files to build the OpenVG reference implementation.
markw <markw@symbian.org>
parents:
diff changeset
     9
* Symbian Foundation Ltd - initial contribution.
6b078b83b04a Add original MMP files to build the OpenVG reference implementation.
markw <markw@symbian.org>
parents:
diff changeset
    10
* 
6b078b83b04a Add original MMP files to build the OpenVG reference implementation.
markw <markw@symbian.org>
parents:
diff changeset
    11
* Contributors:
6b078b83b04a Add original MMP files to build the OpenVG reference implementation.
markw <markw@symbian.org>
parents:
diff changeset
    12
*
6b078b83b04a Add original MMP files to build the OpenVG reference implementation.
markw <markw@symbian.org>
parents:
diff changeset
    13
* Description:
6b078b83b04a Add original MMP files to build the OpenVG reference implementation.
markw <markw@symbian.org>
parents:
diff changeset
    14
* openvg mmp file
6b078b83b04a Add original MMP files to build the OpenVG reference implementation.
markw <markw@symbian.org>
parents:
diff changeset
    15
*/
6b078b83b04a Add original MMP files to build the OpenVG reference implementation.
markw <markw@symbian.org>
parents:
diff changeset
    16
#include <vg\openvguids.hrh> // For uids
6b078b83b04a Add original MMP files to build the OpenVG reference implementation.
markw <markw@symbian.org>
parents:
diff changeset
    17
6b078b83b04a Add original MMP files to build the OpenVG reference implementation.
markw <markw@symbian.org>
parents:
diff changeset
    18
target          libopenvg_sw.dll		// Destination filename
6b078b83b04a Add original MMP files to build the OpenVG reference implementation.
markw <markw@symbian.org>
parents:
diff changeset
    19
6b078b83b04a Add original MMP files to build the OpenVG reference implementation.
markw <markw@symbian.org>
parents:
diff changeset
    20
targettype      dll				// Binary build type
6b078b83b04a Add original MMP files to build the OpenVG reference implementation.
markw <markw@symbian.org>
parents:
diff changeset
    21
uid             KUidSharedDllUidValue KUidOpenVGDllUidValue		// File uids
6b078b83b04a Add original MMP files to build the OpenVG reference implementation.
markw <markw@symbian.org>
parents:
diff changeset
    22
CAPABILITY      ALL -tcb
6b078b83b04a Add original MMP files to build the OpenVG reference implementation.
markw <markw@symbian.org>
parents:
diff changeset
    23
vendorid        0x70000001
6b078b83b04a Add original MMP files to build the OpenVG reference implementation.
markw <markw@symbian.org>
parents:
diff changeset
    24
6b078b83b04a Add original MMP files to build the OpenVG reference implementation.
markw <markw@symbian.org>
parents:
diff changeset
    25
//noexportlibrary
6b078b83b04a Add original MMP files to build the OpenVG reference implementation.
markw <markw@symbian.org>
parents:
diff changeset
    26
6b078b83b04a Add original MMP files to build the OpenVG reference implementation.
markw <markw@symbian.org>
parents:
diff changeset
    27
MACRO       __OPENVGHEADERS_USE_VG_1_1
6b078b83b04a Add original MMP files to build the OpenVG reference implementation.
markw <markw@symbian.org>
parents:
diff changeset
    28
6b078b83b04a Add original MMP files to build the OpenVG reference implementation.
markw <markw@symbian.org>
parents:
diff changeset
    29
userinclude     ..\sfopenvg\include //for internal openvg functions e.g. do_vgXXX
6b078b83b04a Add original MMP files to build the OpenVG reference implementation.
markw <markw@symbian.org>
parents:
diff changeset
    30
6b078b83b04a Add original MMP files to build the OpenVG reference implementation.
markw <markw@symbian.org>
parents:
diff changeset
    31
OS_LAYER_SYSTEMINCLUDE
6b078b83b04a Add original MMP files to build the OpenVG reference implementation.
markw <markw@symbian.org>
parents:
diff changeset
    32
OS_LAYER_LIBC_SYSTEMINCLUDE
6b078b83b04a Add original MMP files to build the OpenVG reference implementation.
markw <markw@symbian.org>
parents:
diff changeset
    33
SYSTEMINCLUDE  OS_LAYER_PUBLIC_EXPORT_PATH(vg) // EGL include files
6b078b83b04a Add original MMP files to build the OpenVG reference implementation.
markw <markw@symbian.org>
parents:
diff changeset
    34
6b078b83b04a Add original MMP files to build the OpenVG reference implementation.
markw <markw@symbian.org>
parents:
diff changeset
    35
6b078b83b04a Add original MMP files to build the OpenVG reference implementation.
markw <markw@symbian.org>
parents:
diff changeset
    36
sourcepath      ..\openvg		// Relative path to source files
6b078b83b04a Add original MMP files to build the OpenVG reference implementation.
markw <markw@symbian.org>
parents:
diff changeset
    37
6b078b83b04a Add original MMP files to build the OpenVG reference implementation.
markw <markw@symbian.org>
parents:
diff changeset
    38
source openvg.cpp
6b078b83b04a Add original MMP files to build the OpenVG reference implementation.
markw <markw@symbian.org>
parents:
diff changeset
    39
6b078b83b04a Add original MMP files to build the OpenVG reference implementation.
markw <markw@symbian.org>
parents:
diff changeset
    40
library         euser.lib     		// Mandatory
6b078b83b04a Add original MMP files to build the OpenVG reference implementation.
markw <markw@symbian.org>
parents:
diff changeset
    41
library			sflibopenvgrefimpl.lib
6b078b83b04a Add original MMP files to build the OpenVG reference implementation.
markw <markw@symbian.org>
parents:
diff changeset
    42
6b078b83b04a Add original MMP files to build the OpenVG reference implementation.
markw <markw@symbian.org>
parents:
diff changeset
    43
#ifdef WINS
6b078b83b04a Add original MMP files to build the OpenVG reference implementation.
markw <markw@symbian.org>
parents:
diff changeset
    44
DEFFILE         \epoc32\include\def\win32\libopenvg11.def	// WINS/WINSCW def file
6b078b83b04a Add original MMP files to build the OpenVG reference implementation.
markw <markw@symbian.org>
parents:
diff changeset
    45
#else
6b078b83b04a Add original MMP files to build the OpenVG reference implementation.
markw <markw@symbian.org>
parents:
diff changeset
    46
DEFFILE         \epoc32\include\def\eabi\libopenvg11.def	// ARM def file
6b078b83b04a Add original MMP files to build the OpenVG reference implementation.
markw <markw@symbian.org>
parents:
diff changeset
    47
#endif // WINS
6b078b83b04a Add original MMP files to build the OpenVG reference implementation.
markw <markw@symbian.org>
parents:
diff changeset
    48
6b078b83b04a Add original MMP files to build the OpenVG reference implementation.
markw <markw@symbian.org>
parents:
diff changeset
    49
6b078b83b04a Add original MMP files to build the OpenVG reference implementation.
markw <markw@symbian.org>
parents:
diff changeset
    50