Skip to content
Snippets Groups Projects
Commit 86fcf51b authored by Lasse Holmstedt's avatar Lasse Holmstedt
Browse files

QML Observer: fix paths for the qml app template

Reviewed-by: Thomas Hartmann
parent 32a54bbc
No related merge requests found
...@@ -16,7 +16,7 @@ contains(DEFINES, QMLJSDEBUGGER) { ...@@ -16,7 +16,7 @@ contains(DEFINES, QMLJSDEBUGGER) {
warning() warning()
warning(Debugging QML requires the qmljsdebugger library that ships with Qt Creator.) warning(Debugging QML requires the qmljsdebugger library that ships with Qt Creator.)
warning(Please specify its location on the qmake command line, e.g.) warning(Please specify its location on the qmake command line, e.g.)
warning( qmake -r QMLJSDEBUGGER_PATH=$CREATORDIR/share/qtcreator/qmljsdebugger) warning( qmake -r QMLJSDEBUGGER_PATH=$CREATORDIR/share/qtcreator/qml/qmljsdebugger)
warning() warning()
error(QMLJSDEBUGGER defined, but no QMLJSDEBUGGER_PATH set on command line. Aborting.) error(QMLJSDEBUGGER defined, but no QMLJSDEBUGGER_PATH set on command line. Aborting.)
......
...@@ -154,7 +154,7 @@ QStringList QMakeStep::moreArguments() ...@@ -154,7 +154,7 @@ QStringList QMakeStep::moreArguments()
} }
arguments << QLatin1String(Constants::QMAKEVAR_QMLJSDEBUGGER_PATH) + QLatin1Char('=') + arguments << QLatin1String(Constants::QMAKEVAR_QMLJSDEBUGGER_PATH) + QLatin1Char('=') +
Core::ICore::instance()->resourcePath() + QLatin1String("/qmljsdebugger"); Core::ICore::instance()->resourcePath() + QLatin1String("/qml/qmljsdebugger");
return arguments; return arguments;
} }
......
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