aboutsummaryrefslogtreecommitdiff
path: root/example/example_3_ibbTransfer/example_2_ibbTransfer.pro
diff options
context:
space:
mode:
authorIan Geiser <ian.geiser@gmail.com>2009-11-08 18:53:24 +0000
committerIan Geiser <ian.geiser@gmail.com>2009-11-08 18:53:24 +0000
commitd7c88970c5fecb274bf8d7c1cd933d903fecc55a (patch)
treecf752d0d6554b81cd4269c97a8c04d9e8ca883e5 /example/example_3_ibbTransfer/example_2_ibbTransfer.pro
parentf97902cc61ad9cf8fb70556ce13fd35903848db6 (diff)
downloadqxmpp-d7c88970c5fecb274bf8d7c1cd933d903fecc55a.tar.gz
Added an example of how to use the in band transfer.
Diffstat (limited to 'example/example_3_ibbTransfer/example_2_ibbTransfer.pro')
-rw-r--r--example/example_3_ibbTransfer/example_2_ibbTransfer.pro20
1 files changed, 20 insertions, 0 deletions
diff --git a/example/example_3_ibbTransfer/example_2_ibbTransfer.pro b/example/example_3_ibbTransfer/example_2_ibbTransfer.pro
new file mode 100644
index 00000000..82821cdc
--- /dev/null
+++ b/example/example_3_ibbTransfer/example_2_ibbTransfer.pro
@@ -0,0 +1,20 @@
+TEMPLATE = app
+
+TARGET = example_2_ibbTransfer
+
+SOURCES += main.cpp \
+ ibbClient.cpp
+
+HEADERS += ibbClient.h
+
+INCLUDEPATH += ../../source
+
+QT += network xml
+
+CONFIG += console debug_and_release
+
+CONFIG(debug, debug|release) {
+ LIBS += -L../../source/debug -lQXmppClient_d
+ } else {
+ LIBS += -L../../source/release -lQXmppClient
+ }