Skip to content
Snippets Groups Projects
Commit e8213ba8 authored by Kai Koehne's avatar Kai Koehne
Browse files

Fix compilation of Quick Designer / Inspector for installed qt headers

Add QtGui/private to the list of include paths.

qdeclarativeitem_p.h has:

  #include <private/qgraphicsitem_p.h>

which failed before.
parent efa77501
No related branches found
No related tags found
No related merge requests found
...@@ -5,5 +5,6 @@ isEmpty(QT_PRIVATE_HEADERS) { ...@@ -5,5 +5,6 @@ isEmpty(QT_PRIVATE_HEADERS) {
INCLUDEPATH += $$quote($${QT_PRIVATE_HEADERS}) \ INCLUDEPATH += $$quote($${QT_PRIVATE_HEADERS}) \
$$quote($${QT_PRIVATE_HEADERS}/QtDeclarative) \ $$quote($${QT_PRIVATE_HEADERS}/QtDeclarative) \
$$quote($${QT_PRIVATE_HEADERS}/QtCore) \ $$quote($${QT_PRIVATE_HEADERS}/QtCore) \
$$quote($${QT_PRIVATE_HEADERS}/QtScript) $$quote($${QT_PRIVATE_HEADERS}/QtScript) \
$$quote($${QT_PRIVATE_HEADERS}/QtGui)
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment