-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMissBeans.pro
More file actions
executable file
·62 lines (42 loc) · 1 KB
/
MissBeans.pro
File metadata and controls
executable file
·62 lines (42 loc) · 1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#-------------------------------------------------
#
# Project created by QtCreator 2010-08-16T09:24:22
#
#-------------------------------------------------
QT += core gui declarative mobility
## We need network
equals( QT_MAJOR_VERSION, 4 ) : greaterThan(QT_MINOR_VERSION, 6) {
QT+=network
#DEFINES += USE_BEARER_IN_QT_NETWORK
} else {
CONFIG+=mobility
MOBILITY+=bearer
}
## MOBILITY += bearer
TARGET = MissBeans
TEMPLATE = app
## qxmpp
INCLUDEPATH += ../qxmpp/src
QT += network xml
CONFIG += console debug_and_release
QXMPP_LIB = qxmpp_d
QXMPP_DIR = ../qxmpp/lib/
LIBS += -L$$QXMPP_DIR -l$$QXMPP_LIB
PRE_TARGETDEPS += $${QXMPP_DIR}/lib$${QXMPP_LIB}.a
#qxmpp end
SOURCES +=\
xmppcore.cpp \
xmpp.cpp \
main.cpp\
mainwindow.cpp \
HEADERS += \
xmppcore.h \
mainwindow.h \
xmpp.h
FORMS += mainwindow.ui
RESOURCES += qml/qml.qrc
symbian {
TARGET.CAPABILITY = NetworkServices
## Symbian spesific
LIBS += -lesock
}