mmserv/metadatautility/Group/MetaDataUtility.mmp
changeset 0 71ca22bcf22a
child 43 9894ed580e4a
equal deleted inserted replaced
-1:000000000000 0:71ca22bcf22a
       
     1 /*
       
     2 * Copyright (c) 2004 Nokia Corporation and/or its subsidiary(-ies).
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  Project file for MetaDataUtility
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #include <data_caging_paths.hrh>
       
    21 #include <platform_paths.hrh>
       
    22 
       
    23 
       
    24 TARGET		MetaDataUtility.dll
       
    25 TARGETTYPE	DLL
       
    26 UID		0x1000008D 0x10200011
       
    27 VENDORID	VID_DEFAULT
       
    28 
       
    29 VERSION 10.0
       
    30 
       
    31 CAPABILITY ALL -Tcb
       
    32 
       
    33 EPOCSTACKSIZE   0x10000          // 64kb
       
    34 EPOCHEAPSIZE    0x1000 0x1000000 // Min 4kb, max 16Mb
       
    35 
       
    36 //Internal flags - For disabling RA support (need both flags) 
       
    37 //MACRO    __METADATA_UTILITY_DISABLE_RA_SUPPORT  // turn flag on for .h/.cpp file
       
    38 //#define  __METADATA_UTILITY_DISABLE_RA_SUPPORT  // turn flag on for .mmp file
       
    39 
       
    40 SOURCEPATH		../Src 
       
    41 SOURCE			MetaDataUtility.cpp
       
    42 SOURCE			MetaDataUtilityBody.cpp
       
    43 SOURCE			MetaDataField.cpp
       
    44 SOURCE			MetaDataFieldContainer.cpp
       
    45 SOURCE			MetaDataSource.cpp
       
    46 SOURCE			MetaDataSourceFile.cpp
       
    47 SOURCE			MetaDataSourceDescriptor.cpp
       
    48 SOURCE			MetaDataParserFactory.cpp
       
    49 SOURCE			MetaDataParser.cpp
       
    50 SOURCE			MetaDataParserID3v1.cpp		// ID3v1 and ID3v1.1
       
    51 SOURCE			MetaDataParserID3v2.cpp		// ID3v2 base
       
    52 SOURCE			MetaDataParserID3v22.cpp	// ID3v2.2
       
    53 SOURCE			MetaDataParserID3v23.cpp	// ID3v2.3
       
    54 SOURCE			MetaDataParserID3v24.cpp	// ID3v2.4
       
    55 SOURCE			MetaDataParser3gp.cpp		// 3GPP
       
    56 SOURCE			MetaDataParserWMA.cpp		// WMA parser
       
    57 SOURCE			MetaDataParserDcf.cpp		// DCF1 Header Parser
       
    58 SOURCE			MetaDataParserDcf2.cpp		// DCF2 Header Parser
       
    59 SOURCE			MetaDataParserMP4.cpp
       
    60 SOURCE			MetaDataBufferAgg.cpp
       
    61 
       
    62 #ifndef __METADATA_UTILITY_DISABLE_RA_SUPPORT	// NOT define
       
    63 SOURCE			MetaDataParserRA.cpp	
       
    64 #else
       
    65 SOURCE			MetaDataParserRADummy.cpp
       
    66 #endif // __METADATA_UTILITY_DISABLE_RA_SUPPORT
       
    67 
       
    68 SOURCE			MetaDataParser3GPExt.cpp
       
    69 
       
    70 
       
    71 SOURCEPATH	../Data
       
    72 START RESOURCE TopCharacterSet.rss
       
    73 HEADER
       
    74 TARGET TopCharacterSet.rsc   
       
    75 TARGETPATH    RESOURCE_FILES_DIR 
       
    76 END
       
    77 
       
    78 USERINCLUDE     ../Inc ../Src
       
    79 USERINCLUDE		../../inc
       
    80 
       
    81 
       
    82 MW_LAYER_SYSTEMINCLUDE
       
    83 SYSTEMINCLUDE		/epoc32/include/libc
       
    84 
       
    85 LIBRARY                 euser.lib
       
    86 LIBRARY                 efsrv.lib	// File handling
       
    87 LIBRARY                 charconv.lib
       
    88 LIBRARY                 3GPMP4Lib.lib
       
    89 LIBRARY                 caf.lib
       
    90 LIBRARY                 estlib.lib
       
    91 LIBRARY                 centralrepository.lib
       
    92 LIBRARY                 bafl.lib 
       
    93 LIBRARY                 SysLangUtil.lib 
       
    94 LIBRARY                 DrmRightsInfo.lib
       
    95 
       
    96 LIBRARY			        3GPExtParser.lib
       
    97 
       
    98 
       
    99 #ifndef __METADATA_UTILITY_DISABLE_RA_SUPPORT	// NOT define
       
   100 STATICLIBRARY     hxmetadatautil.lib
       
   101 #endif //__METADATA_UTILITY_DISABLE_RA_SUPPORT
       
   102 
       
   103 SMPSAFE
       
   104 
       
   105 // End of file