example/AuthApp/AuthApp.pro
changeset 14 a469c0e6e7fb
child 17 106a4bfcb866
equal deleted inserted replaced
13:b5d63d5fc252 14:a469c0e6e7fb
       
     1 TEMPLATE = app
       
     2 TARGET = AuthApp
       
     3 QT += core \
       
     4     gui \
       
     5     network \
       
     6     webkit \
       
     7     xml
       
     8 LIBS += -lsmfcredmgrclient
       
     9 HEADERS += progressbar.h \
       
    10     inc/requestSP.h \
       
    11     inc/xmlParser.h \
       
    12     inc/sessionSP.h \
       
    13     inc/loginDialog.h \
       
    14     inc/errorCodes.h \
       
    15     inc/baseDialog.h \
       
    16     inc/authAppConstants.h \
       
    17     AuthApp.h
       
    18 SOURCES += progressbar.cpp \
       
    19     src/requestSP.cpp \
       
    20     src/xmlParser.cpp \
       
    21     src/sessionSP.cpp \
       
    22     src/loginDialog.cpp \
       
    23     src/baseDialog.cpp \
       
    24     main.cpp \
       
    25     AuthApp.cpp
       
    26 FORMS += progressbar.ui \
       
    27     AuthApp.ui
       
    28 RESOURCES += 
       
    29 symbian: { 
       
    30     TARGET.UID3 = 0xEFE2FD23 # Symbian specific, unprotected uid3 from symbiansigned.com
       
    31     TARGET.CAPABILITY = NetworkServices # Symbian specific, we just need network access
       
    32     #ICON = smfdemo.svg
       
    33 }