example/TwitterAuthApp/TwitterAuthApp.pro
changeset 26 83d6a149c755
equal deleted inserted replaced
25:a180113055cb 26:83d6a149c755
       
     1 TEMPLATE = app
       
     2 TARGET = Twitter
       
     3 QT += core \
       
     4     gui \
       
     5     network \
       
     6     webkit \
       
     7     xml
       
     8 LIBS += -lsmfcredmgrclient \
       
     9     -lhash \
       
    10     -limut
       
    11 HEADERS += Twitter.loc \
       
    12     Twitter.loc \
       
    13     inc/keys.h \
       
    14     progressbar.h \
       
    15     inc/requestSP.h \
       
    16     inc/xmlParser.h \
       
    17     inc/sessionSP.h \
       
    18     inc/loginDialog.h \
       
    19     inc/errorCodes.h \
       
    20     inc/baseDialog.h \
       
    21     inc/authAppConstants.h \
       
    22     AuthApp.h
       
    23 SOURCES += Twitter.rss \
       
    24     Twitter_reg.rss \
       
    25     progressbar.cpp \
       
    26     src/requestSP.cpp \
       
    27     src/xmlParser.cpp \
       
    28     src/sessionSP.cpp \
       
    29     src/loginDialog.cpp \
       
    30     src/baseDialog.cpp \
       
    31     main.cpp \
       
    32     AuthApp.cpp
       
    33 FORMS += progressbar.ui \
       
    34     AuthApp.ui
       
    35 RESOURCES += 
       
    36 symbian: { 
       
    37     TARGET.EPOCHEAPSIZE = 0x020000 \
       
    38         0x3200000
       
    39     TARGET.UID3 = 0xEFE2EF23 # Symbian specific, unprotected uid3 from symbiansigned.com
       
    40     TARGET.CAPABILITY = NetworkServices # Symbian specific, we just need network access
       
    41     ICON = Twitter.svg
       
    42 }