diff options
| author | Ian Geiser <ian.geiser@gmail.com> | 2009-11-08 18:53:24 +0000 |
|---|---|---|
| committer | Ian Geiser <ian.geiser@gmail.com> | 2009-11-08 18:53:24 +0000 |
| commit | d7c88970c5fecb274bf8d7c1cd933d903fecc55a (patch) | |
| tree | cf752d0d6554b81cd4269c97a8c04d9e8ca883e5 /example/example_3_ibbTransfer/example_2_ibbTransfer.pro | |
| parent | f97902cc61ad9cf8fb70556ce13fd35903848db6 (diff) | |
| download | qxmpp-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.pro | 20 |
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
+ }
|
