| 1 | # libidn
|
|---|
| 2 | LIBIDN_BASE = $$IRIS_BASE/libidn
|
|---|
| 3 | CONFIG += libidn
|
|---|
| 4 | include($$IRIS_BASE/libidn.pri)
|
|---|
| 5 |
|
|---|
| 6 | # qca
|
|---|
| 7 | #unix:{
|
|---|
| 8 | # INCLUDEPATH += /usr/local/include
|
|---|
| 9 | # LIBS += -L/usr/local/lib -lqca
|
|---|
| 10 | #}
|
|---|
| 11 | #win32:{
|
|---|
| 12 | # INCLUDEPATH += c:\local\include
|
|---|
| 13 | # LIBS += c:\local\lib\qca.lib
|
|---|
| 14 | #}
|
|---|
| 15 |
|
|---|
| 16 | #!exists(qcaprovider.h) {
|
|---|
| 17 | # Q_PREFIX = $$IRIS_BASE/../qca/src
|
|---|
| 18 | # INCLUDEPATH += $$Q_PREFIX
|
|---|
| 19 | #}
|
|---|
| 20 | #HEADERS += ($$Q_PREFIX)qcaprovider.h
|
|---|
| 21 |
|
|---|
| 22 | DEFINES += XMPP_TEST
|
|---|
| 23 |
|
|---|
| 24 | INCLUDEPATH += $$IRIS_BASE/include $$IRIS_BASE/xmpp-core $$IRIS_BASE/xmpp-im $$IRIS_BASE/jabber
|
|---|
| 25 |
|
|---|
| 26 | HEADERS += \
|
|---|
| 27 | $$IRIS_BASE/xmpp-core/hash.h \
|
|---|
| 28 | $$IRIS_BASE/xmpp-core/simplesasl.h \
|
|---|
| 29 | $$IRIS_BASE/xmpp-core/securestream.h \
|
|---|
| 30 | $$IRIS_BASE/xmpp-core/parser.h \
|
|---|
| 31 | $$IRIS_BASE/xmpp-core/xmlprotocol.h \
|
|---|
| 32 | $$IRIS_BASE/xmpp-core/protocol.h \
|
|---|
| 33 | $$IRIS_BASE/xmpp-core/td.h \
|
|---|
| 34 | $$IRIS_BASE/xmpp-im/xmpp_tasks.h \
|
|---|
| 35 | $$IRIS_BASE/xmpp-im/xmpp_xmlcommon.h \
|
|---|
| 36 | $$IRIS_BASE/xmpp-im/xmpp_vcard.h \
|
|---|
| 37 | $$IRIS_BASE/jabber/s5b.h \
|
|---|
| 38 | $$IRIS_BASE/jabber/xmpp_ibb.h \
|
|---|
| 39 | $$IRIS_BASE/jabber/xmpp_jidlink.h \
|
|---|
| 40 | $$IRIS_BASE/jabber/filetransfer.h \
|
|---|
| 41 | $$IRIS_BASE/include/xmpp.h \
|
|---|
| 42 | $$IRIS_BASE/include/im.h
|
|---|
| 43 |
|
|---|
| 44 | SOURCES += \
|
|---|
| 45 | $$IRIS_BASE/xmpp-core/connector.cpp \
|
|---|
| 46 | $$IRIS_BASE/xmpp-core/tlshandler.cpp \
|
|---|
| 47 | $$IRIS_BASE/xmpp-core/jid.cpp \
|
|---|
| 48 | $$IRIS_BASE/xmpp-core/hash.cpp \
|
|---|
| 49 | $$IRIS_BASE/xmpp-core/simplesasl.cpp \
|
|---|
| 50 | $$IRIS_BASE/xmpp-core/securestream.cpp \
|
|---|
| 51 | $$IRIS_BASE/xmpp-core/parser.cpp \
|
|---|
| 52 | $$IRIS_BASE/xmpp-core/xmlprotocol.cpp \
|
|---|
| 53 | $$IRIS_BASE/xmpp-core/protocol.cpp \
|
|---|
| 54 | $$IRIS_BASE/xmpp-core/stream.cpp \
|
|---|
| 55 | $$IRIS_BASE/xmpp-im/types.cpp \
|
|---|
| 56 | $$IRIS_BASE/xmpp-im/client.cpp \
|
|---|
| 57 | $$IRIS_BASE/xmpp-im/xmpp_tasks.cpp \
|
|---|
| 58 | $$IRIS_BASE/xmpp-im/xmpp_xmlcommon.cpp \
|
|---|
| 59 | $$IRIS_BASE/xmpp-im/xmpp_vcard.cpp \
|
|---|
| 60 | $$IRIS_BASE/jabber/s5b.cpp \
|
|---|
| 61 | $$IRIS_BASE/jabber/xmpp_ibb.cpp \
|
|---|
| 62 | $$IRIS_BASE/jabber/xmpp_jidlink.cpp \
|
|---|
| 63 | $$IRIS_BASE/jabber/filetransfer.cpp
|
|---|
| 64 |
|
|---|