charconvfw/Charconvplugin/group/ShiftJisDirectmap.mmp
changeset 32 8b9155204a54
equal deleted inserted replaced
31:b9ad20498fb4 32:8b9155204a54
       
     1 /*
       
     2 * Copyright (c) 2022 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 the License "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:    This module is a plug-in module for Shift-JIS with Pictograph.
       
    15 *                Basicaly, Vodafone Pictograph is encoded by ISO2022, 
       
    16 *                but Japanese FEP needs a pictograph as one character code 
       
    17 *                in Shift-JIS character code set.
       
    18 *
       
    19 */
       
    20 
       
    21 
       
    22 
       
    23 
       
    24 #include <platform_paths.hrh>
       
    25 
       
    26 #ifdef EKA2
       
    27 ///////////////////////////////////////////////////////////////
       
    28 // 3.0 Code
       
    29 TARGET               ShiftJisDirectmap.DLL
       
    30 TARGETTYPE           PLUGIN
       
    31 CAPABILITY           All -Tcb
       
    32 
       
    33 uid                  0x10009D8D 0x10207354
       
    34 
       
    35 sourcepath           ../src
       
    36 
       
    37 // This is a SYSTEMINCLUDE macro containing the middleware
       
    38 // layer specific include directories
       
    39 MW_LAYER_SYSTEMINCLUDE
       
    40 OS_LAYER_SYSTEMINCLUDE
       
    41 
       
    42 SYSTEMINCLUDE        ../../../inc
       
    43 SYSTEMINCLUDE        ../../inc
       
    44 systeminclude        ../inc
       
    45 
       
    46 source               ShiftJisDirectmap.cpp
       
    47 
       
    48 LIBRARY              EUSER.LIB
       
    49 LIBRARY              CHARCONV.LIB
       
    50 LIBRARY              ECOM.LIB
       
    51 library              SHIFTJIS_SHARED.LIB
       
    52 library              convutils.lib
       
    53 library              JISX0201.LIB
       
    54 library              JISX0208.LIB
       
    55 library              CnvShiftJisDirectmap.lib
       
    56 
       
    57 Start resource       ShiftJisDirectmap.RSS
       
    58 Targetpath           /resource/charconv
       
    59 End
       
    60 
       
    61 start resource       10207354.rss
       
    62 #ifdef SYMBIAN_SECURE_ECOM
       
    63 target               ShiftJisDirectmap.RSC
       
    64 #endif
       
    65 end
       
    66 ///////////////////////////////////////////////////////////////
       
    67 #else // Not EKA2
       
    68 ///////////////////////////////////////////////////////////////
       
    69 // 2.8 Code
       
    70 target          ShiftJisDirectmap.CPL
       
    71 targetpath      /system/charconv
       
    72 targettype      dll
       
    73 uid             0x1000601a 0x101F8691
       
    74 
       
    75 sourcepath      ../src
       
    76 systeminclude   /epoc32/include
       
    77 systeminclude   /epoc32/include/oem
       
    78 systeminclude   ../inc 
       
    79 source          ShiftJisDirectmap.CPP
       
    80 
       
    81 library         EUSER.LIB
       
    82 library         SHIFTJIS_SHARED.LIB
       
    83 library         convutils.lib
       
    84 library         JISX0201.LIB
       
    85 library         JISX0208.LIB
       
    86 library         CnvShiftJisDirectmap.lib
       
    87 
       
    88 sourcepath      ../src
       
    89 start resource  ShiftJisDirectmap.RSS
       
    90 lang            sc
       
    91 end
       
    92 
       
    93 #if defined(ARMCC)
       
    94 deffile         /epoc32/include/def/EABI/CONVPLUG.DEF 
       
    95 #elif defined(WINSCW)
       
    96 deffile         /epoc32/release/winscw/CONVPLUG.DEF 
       
    97 #elif defined(WINS)
       
    98 deffile         /epoc32/release/wins/CONVPLUG.DEF 
       
    99 #else
       
   100 deffile         /epoc32/release/marm/CONVPLUG.DEF 
       
   101 #endif
       
   102 
       
   103 CAPABILITY      CAP_GENERAL_DLL
       
   104 ///////////////////////////////////////////////////////////////
       
   105 #endif