17
|
1 |
TEMPLATE = app
|
|
2 |
TARGET = Flickr
|
|
3 |
QT += core \
|
|
4 |
gui \
|
|
5 |
network \
|
|
6 |
webkit \
|
|
7 |
xml
|
|
8 |
LIBS += -lsmfcredmgrclient
|
|
9 |
HEADERS += inc/keys.h \
|
|
10 |
Flickr.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 |
inc/keys.h \
|
|
20 |
AuthApp.h
|
|
21 |
SOURCES += Flickr_reg.rss \
|
|
22 |
Flickr.rss \
|
|
23 |
progressbar.cpp \
|
|
24 |
src/requestSP.cpp \
|
|
25 |
src/xmlParser.cpp \
|
|
26 |
src/sessionSP.cpp \
|
|
27 |
src/loginDialog.cpp \
|
|
28 |
src/baseDialog.cpp \
|
|
29 |
main.cpp \
|
|
30 |
AuthApp.cpp
|
|
31 |
FORMS += progressbar.ui \
|
|
32 |
AuthApp.ui
|
|
33 |
RESOURCES +=
|
|
34 |
symbian: {
|
|
35 |
TARGET.EPOCHEAPSIZE = 0x020000 \
|
|
36 |
0x3200000
|
|
37 |
TARGET.UID3 = 0xE1D8C7D7 # Symbian specific, unprotected uid3 from symbiansigned.com
|
|
38 |
TARGET.CAPABILITY = NetworkServices # Symbian specific, we just need network access
|
|
39 |
}
|