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