wim/WimServer/group/WimServer.mmp
changeset 0 164170e6151a
equal deleted inserted replaced
-1:000000000000 0:164170e6151a
       
     1 /*
       
     2 * Copyright (c) 2003-2009 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 build file
       
    15 *
       
    16 */
       
    17 
       
    18 #include <platform_paths.hrh>
       
    19 // Uncomment MACRO and define below to enable trace logging
       
    20 //MACRO __WIM_ENABLE_TRACES
       
    21 //#define __WIM_ENABLE_TRACES
       
    22 
       
    23 TARGET        WimServer.exe
       
    24 TARGETTYPE    exe
       
    25 
       
    26 UID           0x1000008D 0x101F79DD
       
    27 
       
    28 CAPABILITY    CAP_SERVER NetworkControl
       
    29 VENDORID      VID_DEFAULT
       
    30 
       
    31 USERINCLUDE   ../../inc             // Common inc
       
    32 USERINCLUDE   ../inc                // WimServer inc
       
    33 
       
    34 APP_LAYER_SYSTEMINCLUDE              // RMmCustomAPI.h
       
    35 
       
    36 
       
    37 // WIM Server source files
       
    38 SOURCE        ../src/WimApduImpl.cpp
       
    39 SOURCE        ../src/WimMemMgmt.cpp
       
    40 SOURCE        ../src/WimResponse.cpp
       
    41 SOURCE        ../src/WimScardListener.cpp
       
    42 SOURCE        ../src/WimServer.cpp
       
    43 SOURCE        ../src/WimSession.cpp
       
    44 SOURCE        ../src/WimSessionRegistry.cpp
       
    45 SOURCE        ../src/WimSimFileHandler.cpp
       
    46 SOURCE        ../src/WimTokenHandler.cpp
       
    47 SOURCE        ../src/WimUtilityFuncs.cpp
       
    48 SOURCE        ../src/WimTrustSettingsHandler.cpp
       
    49 SOURCE        ../src/WimTrustSettingsStore.cpp
       
    50 SOURCE        ../src/WimCertUtil.cpp
       
    51 SOURCE        ../src/WimBTSapObserver.cpp
       
    52 SOURCE        ../src/WimSatRefreshObserver.cpp
       
    53 SOURCE        ../src/WimAuthObjHandler.cpp
       
    54 SOURCE        ../src/WimCallbackImpl.cpp
       
    55 SOURCE        ../src/WimCertHandler.cpp
       
    56 SOURCE        ../src/WimKeyMgmtHandler.cpp
       
    57 SOURCE        ../src/WimOmaProvisioning.cpp
       
    58 SOURCE        ../src/WimJavaProvisioning.cpp
       
    59 SOURCE        ../src/WimSecurityDlgHandler.cpp
       
    60 SOURCE        ../src/WimSignTextHandler.cpp
       
    61 SOURCE        ../src/WimTimer.cpp
       
    62 SOURCE        ../src/WimCleanup.cpp
       
    63 
       
    64 STATICLIBRARY Wimi.lib  // WIMI and WIM Library
       
    65 
       
    66 LIBRARY         random.lib
       
    67 LIBRARY       Scard.lib             // Smart Card Server
       
    68 LIBRARY       Asn1.lib              // Used to decode trusted usage OID's
       
    69 LIBRARY       Customapi.lib         // CustomAPI (used in SIM file reading)
       
    70 LIBRARY       Etel.lib Etelmm.lib   // RTelServer, RMobilePhone
       
    71 LIBRARY       Estlib.lib Euser.lib  // Symbian basic libraries
       
    72 LIBRARY       Ctframework.lib       // Crypto token framework
       
    73 LIBRARY       Efsrv.lib             // File server
       
    74 LIBRARY       Edbms.lib             // Database server
       
    75 LIBRARY       X509.lib              // X509 certificate
       
    76 LIBRARY       WimUtil.lib           // WimUtil module
       
    77 LIBRARY       Hash.lib              // Hash operations
       
    78 LIBRARY       Crypto.lib            // CCertificate
       
    79 LIBRARY       Wtlscert.lib          // Used in certificate handling
       
    80 LIBRARY       SatClient.lib         // SAT Refresh
       
    81 
       
    82 SMPSAFE
       
    83