diff options
Diffstat (limited to 'example/example_1_echoClient/example_1_echoClient.pro')
| -rw-r--r-- | example/example_1_echoClient/example_1_echoClient.pro | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/example/example_1_echoClient/example_1_echoClient.pro b/example/example_1_echoClient/example_1_echoClient.pro new file mode 100644 index 00000000..562cf273 --- /dev/null +++ b/example/example_1_echoClient/example_1_echoClient.pro @@ -0,0 +1,21 @@ +TEMPLATE = app
+
+TARGET = example_1_echoClient
+
+SOURCES += main.cpp \
+ echoClient.cpp
+
+HEADERS += echoClient.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
+ }
+
+OTHER_FILES += README
|
