examples/keepintouch/keepintouch.pro
changeset 0 876b1a06bc25
equal deleted inserted replaced
-1:000000000000 0:876b1a06bc25
       
     1 TEMPLATE = app
       
     2 TARGET = keepintouch
       
     3 
       
     4 QT += gui
       
     5 
       
     6 include(../examples.pri)
       
     7 
       
     8 CONFIG += mobility
       
     9 MOBILITY = messaging contacts
       
    10 
       
    11 INCLUDEPATH += ../../src/messaging 
       
    12 INCLUDEPATH += ../../src/contacts ../../src/contacts/details ../../src/contacts/filters ../../src/contacts/requests
       
    13 
       
    14 symbian|win32|wince*|maemo5|mac {
       
    15 } else {
       
    16 # Temporarily link against local qtopiamail lib (should be part of the platform)
       
    17 LIBS += -L $$(QMF_LIBDIR) -lqtopiamail
       
    18 }
       
    19 
       
    20 HEADERS += \
       
    21     addressfinder.h
       
    22 
       
    23 SOURCES += \
       
    24     addressfinder.cpp\
       
    25     main.cpp
       
    26     
       
    27 symbian:TARGET.CAPABILITY = NetworkServices \
       
    28         LocalServices \
       
    29         ReadUserData \
       
    30         WriteUserData \
       
    31         UserEnvironment \
       
    32         ReadDeviceData \
       
    33         WriteDeviceData
       
    34