This repository has been archived on 2025-12-24. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
yachat/iris-legacy/iris/example/xmpptest/xmpptest.pro

42 lines
771 B
Prolog
Raw Permalink Normal View History

2025-12-25 01:37:49 +05:00
TEMPLATE = app
CONFIG += thread
CONFIG -= app_bundle
TARGET = xmpptest
QT += xml network qt3support
DEFINES += QT_STATICPLUGIN
MOC_DIR = .moc
OBJECTS_DIR = .obj
UI_DIR = .ui
#DEFINES += CS_XMPP
DEFINES += XMPP_DEBUG
# Dependencies
include(../../../conf.pri)
windows:include(../../../conf_windows.pri)
!qca-static {
CONFIG += crypto
}
qca-static {
# QCA
DEFINES += QCA_STATIC
include(../../../third-party/qca/qca.pri)
# QCA-OpenSSL
contains(DEFINES, HAVE_OPENSSL) {
include(../../../third-party/qca/qca-openssl.pri)
}
}
include(../../../cutestuff/cutestuff.pri)
include(../../iris.pri)
irisnet {
include(../../irisnet/irisnet.pri)
}
SOURCES += xmpptest.cpp
INTERFACES += ui_test.ui