diff options
| author | Ian Geiser <ian.geiser@gmail.com> | 2009-11-08 19:44:16 +0000 |
|---|---|---|
| committer | Ian Geiser <ian.geiser@gmail.com> | 2009-11-08 19:44:16 +0000 |
| commit | 89e052995997c9a372d7deee6a9d31e100e10533 (patch) | |
| tree | 5970f1d5ea427d474b2679fb8788d6e8762e21ca /example/example_3_ibbTransferSource/example_3_ibbTransferSource.pro | |
| parent | ac76758dc1859f360dc34f2c7872c96349f75524 (diff) | |
| download | qxmpp-89e052995997c9a372d7deee6a9d31e100e10533.tar.gz | |
Added better examples for in band byte transfers
Diffstat (limited to 'example/example_3_ibbTransferSource/example_3_ibbTransferSource.pro')
| -rw-r--r-- | example/example_3_ibbTransferSource/example_3_ibbTransferSource.pro | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/example/example_3_ibbTransferSource/example_3_ibbTransferSource.pro b/example/example_3_ibbTransferSource/example_3_ibbTransferSource.pro new file mode 100644 index 00000000..0777c6c0 --- /dev/null +++ b/example/example_3_ibbTransferSource/example_3_ibbTransferSource.pro @@ -0,0 +1,20 @@ +TEMPLATE = app
+
+TARGET = example_3_ibbTransferSource
+
+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
+ }
|
