commsfwutils/commsbufs/group/commsbufskern.mmp
changeset 0 dfb7c4ff071f
equal deleted inserted replaced
-1:000000000000 0:dfb7c4ff071f
       
     1 // Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
       
     2 // All rights reserved.
       
     3 // This component and the accompanying materials are made available
       
     4 // under the terms of "Eclipse Public License v1.0"
       
     5 // which accompanies this distribution, and is available
       
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     7 //
       
     8 // Initial Contributors:
       
     9 // Nokia Corporation - initial contribution.
       
    10 //
       
    11 // Description:
       
    12 //
       
    13 
       
    14 /**
       
    15 @file
       
    16 @SYMPurpose A kernel side library of utility classes for implementing zero copy ready comms drivers
       
    17 */
       
    18 
       
    19 #include "kernel/kern_ext.mmh"
       
    20 
       
    21 target			commsbufskern.ldd
       
    22 targettype		ldd
       
    23 
       
    24 sourcepath      ../src
       
    25 source          commsbufskern.cpp
       
    26 
       
    27 uid				0x100000af 0x10287188 // KCommsBufsKernelLibraryImplUid
       
    28 vendorid        0x70000001
       
    29 
       
    30 capability		all
       
    31 
       
    32 library commsbufskern.lib
       
    33 
       
    34 start wins
       
    35 win32_headers
       
    36 end
       
    37 
       
    38 userinclude	../inc
       
    39 systeminclude	/epoc32/include
       
    40 
       
    41 unpaged
       
    42 
       
    43 smpsafe
       
    44 
       
    45 deffile commsbufskern.def
       
    46 
       
    47 // optimise for speed
       
    48 #ifdef MARM_ARMV5
       
    49  OPTION ARMCC -O3 -Otime
       
    50 #endif
       
    51