aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@qt.io>2018-08-17 12:38:50 +0200
committerEike Ziller <eike.ziller@qt.io>2018-08-20 07:04:22 +0000
commitd1e36aa9fc4184cb1d23257a4a82de9192d4266c (patch)
tree641f6c955a2e5bf2c18c5eaceed7eea681e2fa63
parent7b0c60fa3a072b5820f45ab8ae7da3c45058d42e (diff)
Fix include path
PythonExtension/QtCreator/pythonextension_qtcreator_python.h tries to include pythonextensionsplugin.h which is in the .pro file PWD Change-Id: Iaf45ff76618ca06268c3c1063adfbc7e91daae2a Reviewed-by: hjk <hjk@qt.io>
-rw-r--r--plugins/pythonextensions/pythonextensions.pro3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/pythonextensions/pythonextensions.pro b/plugins/pythonextensions/pythonextensions.pro
index d3c5119..0fc3935 100644
--- a/plugins/pythonextensions/pythonextensions.pro
+++ b/plugins/pythonextensions/pythonextensions.pro
@@ -119,7 +119,8 @@ INCLUDEPATH += $$WRAPPER_DIR \
"$$IDE_SOURCE_TREE/src/plugins/coreplugin/actionmanager" \
"$$IDE_SOURCE_TREE/src/plugins/coreplugin/editormanager" \
"$$IDE_SOURCE_TREE/src/libs/extensionsystem" \
- "$$IDE_SOURCE_TREE/src/libs/utils"
+ "$$IDE_SOURCE_TREE/src/libs/utils" \
+ "$$PWD"
for(i, PYSIDE2_INCLUDE) {
INCLUDEPATH += $$i/QtWidgets $$i/QtGui $$i/QtCore