aboutsummaryrefslogtreecommitdiff
path: root/example/example.pri
diff options
context:
space:
mode:
Diffstat (limited to 'example/example.pri')
-rw-r--r--example/example.pri13
1 files changed, 13 insertions, 0 deletions
diff --git a/example/example.pri b/example/example.pri
new file mode 100644
index 00000000..b409c5cf
--- /dev/null
+++ b/example/example.pri
@@ -0,0 +1,13 @@
+TEMPLATE = app
+
+INCLUDEPATH += ../../source
+
+QT += network xml
+
+CONFIG += console debug_and_release
+
+CONFIG(debug, debug|release) {
+ LIBS += -L../../source -lQXmppClient_d
+} else {
+ LIBS += -L../../source -lQXmppClient
+}