aboutsummaryrefslogtreecommitdiff
path: root/example/example.pri
diff options
context:
space:
mode:
authorJeremy Lainé <jeremy.laine@m4x.org>2010-03-04 12:03:12 +0000
committerJeremy Lainé <jeremy.laine@m4x.org>2010-03-04 12:03:12 +0000
commit3631e217756d13d2761f3c66b63153a2bb7525be (patch)
treef5651b628a3958ec3a899c7772fd997f4b93e962 /example/example.pri
parent3541dbcf8ebada61f963f8c8785656f61c40f791 (diff)
downloadqxmpp-3631e217756d13d2761f3c66b63153a2bb7525be.tar.gz
make all examples use example.pri for common definitions
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
+}