diff options
| author | Jeremy Lainé <jeremy.laine@m4x.org> | 2012-07-22 00:08:18 +0200 |
|---|---|---|
| committer | Jeremy Lainé <jeremy.laine@m4x.org> | 2012-07-22 00:08:18 +0200 |
| commit | 862913434a70a5505f082f296127aa7eb82562c1 (patch) | |
| tree | bea09fe564d44ec29d8b43963bfca073d44babc9 | |
| parent | 0a584900db720454f06d136e6bdf445a8f87e8b7 (diff) | |
| download | qxmpp-862913434a70a5505f082f296127aa7eb82562c1.tar.gz | |
use local dirs first when linking
| -rw-r--r-- | examples/examples.pri | 3 | ||||
| -rw-r--r-- | tests/tests.pro | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/examples/examples.pri b/examples/examples.pri index f8f98b4e..84bafdf9 100644 --- a/examples/examples.pri +++ b/examples/examples.pri @@ -3,8 +3,9 @@ include(../qxmpp.pri) TEMPLATE = app CONFIG += console +QMAKE_LIBDIR += ../../src INCLUDEPATH += $$QXMPP_INCLUDEPATH -LIBS += -L../../src $$QXMPP_LIBS +LIBS += $$QXMPP_LIBS # Symbian packaging rules symbian { diff --git a/tests/tests.pro b/tests/tests.pro index a415ac55..48df9eaa 100644 --- a/tests/tests.pro +++ b/tests/tests.pro @@ -36,5 +36,6 @@ HEADERS += \ SOURCES += codec.cpp sasl.cpp } +QMAKE_LIBDIR += ../src INCLUDEPATH += $$QXMPP_INCLUDEPATH -LIBS += -L../src $$QXMPP_LIBS +LIBS += $$QXMPP_LIBS |
