qtmobility/plugins/contacts/symbiansim/symbiansim.pro
changeset 1 2b40d63a9c3d
child 4 90517678cc4f
equal deleted inserted replaced
0:cfcbf08528c4 1:2b40d63a9c3d
       
     1 ######################################################################
       
     2 #
       
     3 # Contacts Mobility API
       
     4 #
       
     5 ######################################################################
       
     6 
       
     7 TEMPLATE = lib
       
     8 CONFIG += plugin
       
     9 TARGET = $$qtLibraryTarget(mobapicontactspluginsymbiansim)
       
    10 
       
    11 include(../../../common.pri)
       
    12 include(symbiansim_defines.pri)
       
    13 
       
    14 symbian: { 
       
    15     load(data_caging_paths)
       
    16     
       
    17     TARGET.CAPABILITY = ALL -TCB
       
    18     TARGET.EPOCALLOWDLLDATA = 1
       
    19     TARGET.UID3 = 0x2002AC85
       
    20 
       
    21     INCLUDEPATH += $$APP_LAYER_SYSTEMINCLUDE
       
    22 
       
    23     INCLUDEPATH += inc
       
    24     INCLUDEPATH += rss
       
    25     INCLUDEPATH += $$SOURCE_DIR/contacts
       
    26     INCLUDEPATH += $$SOURCE_DIR/contacts/details
       
    27     INCLUDEPATH += $$SOURCE_DIR/contacts/filters
       
    28     INCLUDEPATH += $$SOURCE_DIR/contacts/requests
       
    29     HEADERS += $$PUBLIC_HEADERS \
       
    30         inc/cntsymbiansimengine.h \
       
    31         inc/cntsymbiansimtransformerror.h \
       
    32         inc/cntsimstore.h \
       
    33         inc/cntsimstoreprivate.h \
       
    34         inc/cntabstractsimrequest.h \
       
    35         inc/cntsimcontactfetchrequest.h \
       
    36         inc/cntsimcontactlocalidfetchrequest.h \
       
    37         inc/cntsimcontactremoverequest.h \
       
    38         inc/cntsimcontactsaverequest.h \
       
    39         inc/cntsimdetaildefinitionfetchrequest.h
       
    40         
       
    41     SOURCES += src/cntsymbiansimengine.cpp \
       
    42         src/cntsymbiansimtransformerror.cpp \
       
    43         src/cntsimstore.cpp \
       
    44         src/cntsimstoreprivate.cpp \
       
    45         src/cntabstractsimrequest.cpp \
       
    46         src/cntsimcontactfetchrequest.cpp \
       
    47         src/cntsimcontactlocalidfetchrequest.cpp \
       
    48         src/cntsimcontactremoverequest.cpp \
       
    49         src/cntsimcontactsaverequest.cpp \
       
    50         src/cntsimdetaildefinitionfetchrequest.cpp
       
    51         
       
    52     CONFIG += mobility
       
    53     MOBILITY = contacts
       
    54 
       
    55     LIBS += -lcntmodel \
       
    56             -lflogger \
       
    57             -lefsrv
       
    58 
       
    59     target.path = /sys/bin
       
    60     INSTALLS += target
       
    61 
       
    62     symbianplugin.sources = $${TARGET}.dll
       
    63     symbianplugin.path = /resource/qt/plugins/contacts
       
    64     DEPLOYMENT += symbianplugin
       
    65 
       
    66 }
       
    67