aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/doc.pro2
-rw-r--r--examples/examples.pri2
-rw-r--r--qxmpp.pri2
-rw-r--r--src/src.pro2
-rw-r--r--tests/tests.pro2
5 files changed, 5 insertions, 5 deletions
diff --git a/doc/doc.pro b/doc/doc.pro
index a13d8e17..6f1467ef 100644
--- a/doc/doc.pro
+++ b/doc/doc.pro
@@ -5,7 +5,7 @@ CONFIG += console
CONFIG -= app_bundle
QT -= gui
-INCLUDEPATH += $$QXMPP_INCLUDE_DIR
+INCLUDEPATH += $$QXMPP_INCLUDEPATH
TARGET = doxyfilter
SOURCES += doxyfilter.cpp
diff --git a/examples/examples.pri b/examples/examples.pri
index f9ffe28f..17d3b3b2 100644
--- a/examples/examples.pri
+++ b/examples/examples.pri
@@ -3,7 +3,7 @@ include(../qxmpp.pri)
TEMPLATE = app
CONFIG += console
-INCLUDEPATH += $$QXMPP_INCLUDE_DIR
+INCLUDEPATH += $$QXMPP_INCLUDEPATH
LIBS += $$QXMPP_LIBS
PRE_TARGETDEPS += $$QXMPP_LIBRARY_FILE
diff --git a/qxmpp.pri b/qxmpp.pri
index 6f0145b1..feb433b8 100644
--- a/qxmpp.pri
+++ b/qxmpp.pri
@@ -1,7 +1,7 @@
# Common definitions
QT += network xml
-QXMPP_INCLUDE_DIR = $$PWD/src
+QXMPP_INCLUDEPATH = $$PWD/src
QXMPP_LIBRARY_DIR = $$PWD/lib
CONFIG(debug, debug|release) {
diff --git a/src/src.pro b/src/src.pro
index d95763e2..db9d21c0 100644
--- a/src/src.pro
+++ b/src/src.pro
@@ -5,7 +5,7 @@ QT -= gui
TEMPLATE = lib
CONFIG += staticlib
-INCLUDEPATH += $$QXMPP_INCLUDE_DIR $$QXMPP_INTERNAL_INCLUDES
+INCLUDEPATH += $$QXMPP_INCLUDEPATH $$QXMPP_INTERNAL_INCLUDES
LIBS += $$QXMPP_INTERNAL_LIBS
# To enable support for the Speex audio codec, uncomment the following:
diff --git a/tests/tests.pro b/tests/tests.pro
index 80935549..9dbfc79e 100644
--- a/tests/tests.pro
+++ b/tests/tests.pro
@@ -8,6 +8,6 @@ RESOURCES += tests.qrc
SOURCES += tests.cpp
HEADERS += tests.h
-INCLUDEPATH += $$QXMPP_INCLUDE_DIR
+INCLUDEPATH += $$QXMPP_INCLUDEPATH
LIBS += $$QXMPP_LIBS
PRE_TARGETDEPS += $$QXMPP_LIBRARY_FILE