26
|
1 |
TEMPLATE = app
|
|
2 |
TARGET = Linkedin
|
|
3 |
QT += core \
|
|
4 |
gui \
|
|
5 |
network \
|
|
6 |
webkit \
|
|
7 |
xml
|
|
8 |
LIBS += -lsmfcredmgrclient \
|
|
9 |
-lhash \
|
|
10 |
-limut \
|
|
11 |
-lapgrfx \
|
|
12 |
-leikcore \
|
|
13 |
-lcone \
|
|
14 |
-lavkon
|
|
15 |
HEADERS += inc/keys.h \
|
|
16 |
progressbar.h \
|
|
17 |
inc/requestSP.h \
|
|
18 |
inc/xmlParser.h \
|
|
19 |
inc/sessionSP.h \
|
|
20 |
inc/loginDialog.h \
|
|
21 |
inc/errorCodes.h \
|
|
22 |
inc/baseDialog.h \
|
|
23 |
inc/authAppConstants.h \
|
|
24 |
AuthApp.h
|
|
25 |
SOURCES += 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 = 0xEFE2EA23 # Symbian specific, unprotected uid3 from symbiansigned.com
|
|
40 |
TARGET.CAPABILITY = NetworkServices # Symbian specific, we just need network access
|
|
41 |
ICON = Linkedin.svg
|
|
42 |
}
|