qtmobility/examples/todotool/todotool.pro
changeset 4 90517678cc4f
parent 1 2b40d63a9c3d
child 5 453da2cfceef
equal deleted inserted replaced
1:2b40d63a9c3d 4:90517678cc4f
     1 TEMPLATE = app
       
     2 TARGET = todotool
       
     3 INCLUDEPATH += ../../src/serviceframework
       
     4 
       
     5 include(../examples.pri)
       
     6 
       
     7 QT += gui
       
     8 
       
     9 # Input 
       
    10 HEADERS += todotool.h
       
    11 SOURCES += todotool.cpp \
       
    12            main.cpp
       
    13 
       
    14 CONFIG += mobility
       
    15 MOBILITY = serviceframework
       
    16 
       
    17 RESOURCES += resource.qrc
       
    18 
       
    19 win32 {
       
    20     FORMS += todotool.ui
       
    21 }
       
    22 
       
    23 unix: {
       
    24     linux-*: {
       
    25         FORMS += todotool.ui
       
    26     }
       
    27 
       
    28     mac: {
       
    29         FORMS += todotool.ui
       
    30     }
       
    31 }
       
    32 
       
    33 symbian {
       
    34     addFiles.sources = ../notesmanagerplugin/notesmanagerservice.xml
       
    35     addFiles.path = xmldata
       
    36     DEPLOYMENT += addFiles
       
    37 
       
    38     TARGET.CAPABILITY = ALL -TCB
       
    39     FORMS += todotool.ui #change to todotool_s60.ui
       
    40 }