aknlayoutcompiler/group/AknLayoutCompiler.mmp
changeset 0 f58d6ec98e88
child 1 b700e12870ca
equal deleted inserted replaced
-1:000000000000 0:f58d6ec98e88
       
     1 /*
       
     2 * Copyright (c) 2002-2008 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:  
       
    15 *
       
    16 */
       
    17 
       
    18 #include <platform_paths.hrh>
       
    19 
       
    20 TARGET      AknLayoutCompiler.exe
       
    21 TARGETTYPE  EXE
       
    22 
       
    23 SYSTEMINCLUDE     .
       
    24 SYSTEMINCLUDE     ../inc
       
    25 SYSTEMINCLUDE   ../../inc
       
    26 SYSTEMINCLUDE   ../../inc/arabica
       
    27 
       
    28 MW_LAYER_SYSTEMINCLUDE
       
    29 
       
    30 // These options enable exception handling and set the warning level to 3 for command
       
    31 // line builds. STL code generates too many warnings at level 4, but is clean at
       
    32 // level 3. Also require RTTI.
       
    33 option MSVC /GX /W3 /GR
       
    34 
       
    35 SOURCEPATH      ../src
       
    36 
       
    37 source          CppWriter.cpp
       
    38 source          Extract.cpp
       
    39 source          HtmlParse.cpp
       
    40 source          Layout.cpp
       
    41 source          AknLayoutCompiler.cpp
       
    42 source          LayoutCompilerErr.cpp
       
    43 source          LayoutParse.cpp
       
    44 source          LayoutWriter.cpp
       
    45 source          WriterBase.cpp
       
    46 source          Lay2Cdl.cpp
       
    47 source          Cdl2Lag.cpp
       
    48 source          LayCdl2Inst.cpp
       
    49 source          LayCdlCheck.cpp
       
    50 source          LayoutPack.cpp
       
    51 source          LayCdl2InstO.cpp
       
    52 source          MakeLayConvTest.cpp
       
    53 source          LayScale.cpp
       
    54 source          AdaptationLayerTemplate.cpp
       
    55 source          Lay2LayPerf.cpp
       
    56 source          LayPerfWriter.cpp
       
    57 source			coreparser.cpp
       
    58 source			formulaparser.cpp
       
    59 source			formulatree.cpp
       
    60 
       
    61 #ifdef RD_XML_PARSER_TOOLCHAIN
       
    62 source          SaxErrorHandler.cpp
       
    63 source          MLCompData.cpp
       
    64 source          MLCompDataParse.cpp
       
    65 source          MLCompData2Cdl.cpp
       
    66 source          MLCompCdl2InstO.cpp
       
    67 source          MLAttributes.cpp
       
    68 source          MLAttributesParse.cpp
       
    69 source          MLCompData2LayPerf.cpp
       
    70 source          MLCompDataLayPerfWriter.cpp
       
    71 source          MLEqCompData.cpp
       
    72 source          MLEqCompDataParse.cpp
       
    73 source          MLEqCompData2DHuiML.cpp
       
    74 #endif
       
    75 
       
    76 source          ZoomLevelNames.cpp
       
    77 source          MasterLayoutPack.cpp
       
    78 
       
    79 #ifndef SBSV2
       
    80   start CW32
       
    81     win32_library /epoc32/release/cwtools/rel/CdlCompilerToolkit.lib
       
    82   end
       
    83 
       
    84   start VC32
       
    85     win32_library /epoc32/release/tools/rel/CdlCompilerToolkit.lib
       
    86   end
       
    87 #else 
       
    88   START TOOLS
       
    89     #if defined(CW32) 
       
    90       win32_library /epoc32/release/cwtools/rel/CdlCompilerToolkit.lib
       
    91     #elif defined(VC32)
       
    92       win32_library /epoc32/release/tools/rel/CdlCompilerToolkit.lib
       
    93     #endif
       
    94   END
       
    95 #endif
       
    96 
       
    97 start TOOLS
       
    98 #ifdef RD_XML_PARSER_TOOLCHAIN
       
    99 win32_library /epoc32/release/tools/rel/Arabica.lib
       
   100 win32_library /epoc32/release/tools/rel/xerces-c_2.lib
       
   101 #endif
       
   102 win32_library Advapi32.lib 
       
   103 end
       
   104 
       
   105 
       
   106 // End of File