messagingapp/msgui/appengine/appengine.pro
changeset 23 238255e8b033
child 25 84d9eb65b26f
equal deleted inserted replaced
5:4697dfb2d7ad 23:238255e8b033
       
     1 #
       
     2 # Copyright (c) 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:
       
    15 #
       
    16 
       
    17 TEMPLATE = lib
       
    18 TARGET =  appengine
       
    19 DEPENDPATH += . inc
       
    20 DEPENDPATH += . src
       
    21 
       
    22 INCLUDEPATH += ../../../inc
       
    23 INCLUDEPATH += ../../msgutils/s60qconversions/inc
       
    24 INCLUDEPATH += $$APP_LAYER_SYSTEMINCLUDE
       
    25 
       
    26 DEFINES += BUILD_DLL
       
    27 #QMAKE_CXXFLAGS.ARMCC -= --no_hide_all
       
    28 
       
    29 #UID3
       
    30 TARGET.UID3 = 0x2001FE7A 
       
    31 
       
    32 # Capability
       
    33 TARGET.CAPABILITY = CAP_GENERAL_DLL
       
    34 TARGET.EPOCALLOWDLLDATA = 1
       
    35 
       
    36 CONFIG += hb
       
    37     
       
    38 # Platforms
       
    39 SYMBIAN_PLATFORMS = WINSCW ARMV5
       
    40 
       
    41 # Build.inf rules
       
    42 BLD_INF_RULES.prj_exports += \
       
    43      "$${LITERAL_HASH}include <platform_paths.hrh>" \
       
    44      "rom/appengine.iby  CORE_APP_LAYER_IBY_EXPORT_PATH(appengine.iby)"
       
    45 
       
    46 # Input
       
    47 HEADERS += inc/conversationsengine.h \
       
    48            inc/conversationmsgstorehandler.h \
       
    49            inc/conversationsengine_p.h \
       
    50            inc/conversationssummarymodel.h \
       
    51            inc/conversationsmodel.h \
       
    52            inc/conversationsengineutility.h \
       
    53            inc/conversationchangehandler.h \
       
    54            inc/conversationlistchangehandler.h \
       
    55            inc/draftsmodel.h
       
    56                       
       
    57 SOURCES += src/conversationsengine.cpp \
       
    58            src/conversationmsgstorehandler.cpp \
       
    59            src/conversationsengine_p.cpp \
       
    60            src/conversationssummarymodel.cpp \
       
    61            src/conversationsmodel.cpp \
       
    62            src/conversationsengineutility.cpp \
       
    63            src/conversationchangehandler.cpp \
       
    64            src/conversationlistchangehandler.cpp \
       
    65            src/draftsmodel.cpp
       
    66 
       
    67 LIBS += -lcsserverclientapi \
       
    68         -lcsutils \
       
    69         -ls60qconversions \
       
    70         -lconvergedmessageutils \
       
    71         -lmsgs \
       
    72         -lInetProtUtil \
       
    73         -lsmildtd \
       
    74         -lxmldom \
       
    75         -lxmlparser \
       
    76         -lunidatamodelloader 
       
    77 
       
    78 
       
    79