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