Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Marco Bubke
flatpak-qt-creator
Commits
86fcf51b
Commit
86fcf51b
authored
Sep 29, 2010
by
Lasse Holmstedt
Browse files
QML Observer: fix paths for the qml app template
Reviewed-by: Thomas Hartmann
parent
32a54bbc
Changes
2
Hide whitespace changes
Inline
Side-by-side
share/qtcreator/templates/qmlapp/qmlapplicationviewer/qmlapplicationviewer.pri
View file @
86fcf51b
...
...
@@ -16,7 +16,7 @@ contains(DEFINES, QMLJSDEBUGGER) {
warning()
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( qmake -r QMLJSDEBUGGER_PATH=$CREATORDIR/share/qtcreator/qmljsdebugger)
warning( qmake -r QMLJSDEBUGGER_PATH=$CREATORDIR/share/qtcreator/
qml/
qmljsdebugger)
warning()
error(QMLJSDEBUGGER defined, but no QMLJSDEBUGGER_PATH set on command line. Aborting.)
...
...
src/plugins/qt4projectmanager/qmakestep.cpp
View file @
86fcf51b
...
...
@@ -154,7 +154,7 @@ QStringList QMakeStep::moreArguments()
}
arguments
<<
QLatin1String
(
Constants
::
QMAKEVAR_QMLJSDEBUGGER_PATH
)
+
QLatin1Char
(
'='
)
+
Core
::
ICore
::
instance
()
->
resourcePath
()
+
QLatin1String
(
"/qmljsdebugger"
);
Core
::
ICore
::
instance
()
->
resourcePath
()
+
QLatin1String
(
"/
qml/
qmljsdebugger"
);
return
arguments
;
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment