qtcontactsmobility/examples/samplephonebook/samplephonebook.pro
changeset 24 0ba2181d7c28
child 25 76a2435edfd4
equal deleted inserted replaced
0:e686773b3f54 24:0ba2181d7c28
       
     1 ######################################################################
       
     2 #
       
     3 # Simple example of how to use the contacts API
       
     4 #
       
     5 ######################################################################
       
     6 
       
     7 TEMPLATE = app
       
     8 TARGET = samplephonebook
       
     9 DEPENDPATH += .
       
    10 INCLUDEPATH += . \
       
    11                ../../src/contacts\
       
    12                ../../src/contacts/filters \
       
    13                ../../src/contacts/requests \
       
    14                ../../src/contacts/details 
       
    15 
       
    16 CONFIG += mobility
       
    17 MOBILITY = contacts
       
    18 
       
    19 # Input
       
    20 SOURCES += main.cpp \
       
    21            phonebook.cpp \
       
    22            contacteditor.cpp \
       
    23            contactlistpage.cpp \
       
    24            filterpage.cpp
       
    25 HEADERS += phonebook.h \
       
    26            contacteditor.h \
       
    27            contactlistpage.h \
       
    28            filterpage.h
       
    29 
       
    30 symbian: {
       
    31     TARGET.CAPABILITY = ReadUserData \
       
    32                         WriteUserData \
       
    33                         ReadDeviceData \
       
    34                         WriteDeviceData \
       
    35                         SwEvent
       
    36 }
       
    37 include(../examples.pri)