| 1 | # libidn
|
|---|
| 2 | LIBIDN_BASE = $$IRIS_BASE/libidn
|
|---|
| 3 | CONFIG += libidn
|
|---|
| 4 | include($$IRIS_BASE/libidn.pri)
|
|---|
| 5 |
|
|---|
| 6 | DEFINES += XMPP_TEST
|
|---|
| 7 |
|
|---|
| 8 | INCLUDEPATH += $$IRIS_BASE/include $$IRIS_BASE/xmpp-core $$IRIS_BASE/xmpp-im $$IRIS_BASE/jabber
|
|---|
| 9 |
|
|---|
| 10 | HEADERS += \
|
|---|
| 11 | $$IRIS_BASE/xmpp-core/hash.h \
|
|---|
| 12 | $$IRIS_BASE/xmpp-core/simplesasl.h \
|
|---|
| 13 | $$IRIS_BASE/xmpp-core/securestream.h \
|
|---|
| 14 | $$IRIS_BASE/xmpp-core/parser.h \
|
|---|
| 15 | $$IRIS_BASE/xmpp-core/xmlprotocol.h \
|
|---|
| 16 | $$IRIS_BASE/xmpp-core/protocol.h \
|
|---|
| 17 | $$IRIS_BASE/xmpp-core/td.h \
|
|---|
| 18 | $$IRIS_BASE/xmpp-im/xmpp_tasks.h \
|
|---|
| 19 | $$IRIS_BASE/xmpp-im/xmpp_xmlcommon.h \
|
|---|
| 20 | $$IRIS_BASE/xmpp-im/xmpp_vcard.h \
|
|---|
| 21 | $$IRIS_BASE/jabber/s5b.h \
|
|---|
| 22 | $$IRIS_BASE/jabber/xmpp_ibb.h \
|
|---|
| 23 | $$IRIS_BASE/jabber/xmpp_jidlink.h \
|
|---|
| 24 | $$IRIS_BASE/jabber/filetransfer.h \
|
|---|
| 25 | $$IRIS_BASE/include/xmpp.h \
|
|---|
| 26 | $$IRIS_BASE/include/im.h
|
|---|
| 27 |
|
|---|
| 28 | SOURCES += \
|
|---|
| 29 | $$IRIS_BASE/xmpp-core/connector.cpp \
|
|---|
| 30 | $$IRIS_BASE/xmpp-core/tlshandler.cpp \
|
|---|
| 31 | $$IRIS_BASE/xmpp-core/jid.cpp \
|
|---|
| 32 | $$IRIS_BASE/xmpp-core/hash.cpp \
|
|---|
| 33 | $$IRIS_BASE/xmpp-core/simplesasl.cpp \
|
|---|
| 34 | $$IRIS_BASE/xmpp-core/securestream.cpp \
|
|---|
| 35 | $$IRIS_BASE/xmpp-core/parser.cpp \
|
|---|
| 36 | $$IRIS_BASE/xmpp-core/xmlprotocol.cpp \
|
|---|
| 37 | $$IRIS_BASE/xmpp-core/protocol.cpp \
|
|---|
| 38 | $$IRIS_BASE/xmpp-core/stream.cpp \
|
|---|
| 39 | $$IRIS_BASE/xmpp-im/types.cpp \
|
|---|
| 40 | $$IRIS_BASE/xmpp-im/client.cpp \
|
|---|
| 41 | $$IRIS_BASE/xmpp-im/xmpp_tasks.cpp \
|
|---|
| 42 | $$IRIS_BASE/xmpp-im/xmpp_xmlcommon.cpp \
|
|---|
| 43 | $$IRIS_BASE/xmpp-im/xmpp_vcard.cpp \
|
|---|
| 44 | $$IRIS_BASE/jabber/s5b.cpp \
|
|---|
| 45 | $$IRIS_BASE/jabber/xmpp_ibb.cpp \
|
|---|
| 46 | $$IRIS_BASE/jabber/xmpp_jidlink.cpp \
|
|---|
| 47 | $$IRIS_BASE/jabber/filetransfer.cpp
|
|---|
| 48 |
|
|---|