blob: 598a1497bf9d50b68b1ea24f601e66309b7a81f2 (
plain) (
blame)
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
|
# Common definitions
QT += network xml
QXMPP_VERSION = 0.3.92
QXMPP_INCLUDEPATH = $$PWD/src/base $$PWD/src/client $$PWD/src/server
CONFIG(debug, debug|release) {
QXMPP_LIBRARY_NAME = qxmpp_d
} else {
QXMPP_LIBRARY_NAME = qxmpp
}
# Libraries used internally by QXmpp
android|symbian {
} else:contains(MEEGO_EDITION,harmattan) {
# meego/harmattan has speex for sure
QXMPP_INTERNAL_DEFINES += QXMPP_USE_SPEEX
QXMPP_INTERNAL_LIBS += -lspeex
} else:symbian {
QXMPP_INTERNAL_INCLUDES = $$APP_LAYER_SYSTEMINCLUDE
QXMPP_INTERNAL_LIBS = -lesock
} else:win32 {
QXMPP_INTERNAL_LIBS = -ldnsapi -lws2_32
}
# Libraries for apps which use QXmpp
symbian {
# Symbian needs a .lib extension to recognise the library as static
QXMPP_LIBS = -l$${QXMPP_LIBRARY_NAME}.lib
} else {
QXMPP_LIBS = -l$${QXMPP_LIBRARY_NAME}
}
# FIXME: we should be able to use the link_prl option to automatically pull
# in the extra libraries which the qxmpp library needs, but this does not
# seem to work on win32, so we specify the dependencies here:
QXMPP_LIBS += $$QXMPP_INTERNAL_LIBS
# Installation prefix and library directory
isEmpty(PREFIX) {
unix:PREFIX=/usr/local
}
isEmpty(LIBDIR) {
LIBDIR=lib
}
|