aboutsummaryrefslogtreecommitdiff
path: root/example/example_3_ibbTransfer/example_3_ibbTransfer.pro
diff options
context:
space:
mode:
Diffstat (limited to 'example/example_3_ibbTransfer/example_3_ibbTransfer.pro')
-rw-r--r--example/example_3_ibbTransfer/example_3_ibbTransfer.pro20
1 files changed, 20 insertions, 0 deletions
diff --git a/example/example_3_ibbTransfer/example_3_ibbTransfer.pro b/example/example_3_ibbTransfer/example_3_ibbTransfer.pro
new file mode 100644
index 00000000..82821cdc
--- /dev/null
+++ b/example/example_3_ibbTransfer/example_3_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
+ }