diff options
| author | Jeremy Lainé <jeremy.laine@m4x.org> | 2010-08-27 15:17:18 +0000 |
|---|---|---|
| committer | Jeremy Lainé <jeremy.laine@m4x.org> | 2010-08-27 15:17:18 +0000 |
| commit | 9235370c59f46e5e73936f9ccd907ee51603e70b (patch) | |
| tree | 445d05b451ceb3e41ae41fce12832dcb1d536087 /src/src.pro | |
| parent | 5852e0fada1c9be06bd79328d3b6d3fe3dcde2d0 (diff) | |
| download | qxmpp-9235370c59f46e5e73936f9ccd907ee51603e70b.tar.gz | |
move ping handling to a plugin
Diffstat (limited to 'src/src.pro')
| -rw-r--r-- | src/src.pro | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/src.pro b/src/src.pro index ee3cf582..d141d4f1 100644 --- a/src/src.pro +++ b/src/src.pro @@ -18,7 +18,7 @@ VERSION = $$QXMPP_VERSION DESTDIR = $$QXMPP_LIBRARY_DIR # Header files -HEADERS += QXmppUtils.h \ +INSTALL_HEADERS = QXmppUtils.h \ QXmppArchiveIq.h \ QXmppArchiveManager.h \ QXmppBindIq.h \ @@ -68,6 +68,7 @@ HEADERS += QXmppUtils.h \ QXmppVCardManager.h \ QXmppVCard.h \ QXmppVersionIq.h +HEADERS += $$INSTALL_HEADERS # Source files SOURCES += QXmppUtils.cpp \ @@ -119,12 +120,17 @@ SOURCES += QXmppUtils.cpp \ QXmppVCard.cpp \ QXmppVersionIq.cpp +# Plugins +DEFINES += QT_STATICPLUGIN +HEADERS += server/mod_ping.h +SOURCES += server/mod_ping.cpp + # pkg-config support CONFIG += create_pc create_prl no_install_prl QMAKE_PKGCONFIG_DESTDIR = $$QXMPP_LIBRARY_DIR/pkgconfig # Installation -headers.files = $$HEADERS +headers.files = $$INSTALL_HEADERS headers.path = $$[QT_INSTALL_PREFIX]/include/qxmpp target.path = $$[QT_INSTALL_PREFIX]/lib INSTALLS += headers target |
