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