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