Unknown module(s) in QT: qml_debug
-
Hi
I am trying to enable QML debugging as described in:
http://doc.qt.io/qt-5/qtquick-debugging.htmlHowever, the line
QT += qml_debugin my .pro file generates the above
qmakeerror.I have enabled the QML debugging in the build steps of my kit, and am using the Debug build. What is happening?
-
Hi
I am trying to enable QML debugging as described in:
http://doc.qt.io/qt-5/qtquick-debugging.htmlHowever, the line
QT += qml_debugin my .pro file generates the above
qmakeerror.I have enabled the QML debugging in the build steps of my kit, and am using the Debug build. What is happening?
@Diracsbracket said in Unknown module(s) in QT: qml_debug:
QT += qml_debugWrong variable. SHould be
CONFIG+=qml_debugIf you enable debugging in Qt Creator then there is no need to add anything in your .pro file. It will be added automatically during build.
-
@Diracsbracket said in Unknown module(s) in QT: qml_debug:
QT += qml_debugWrong variable. SHould be
CONFIG+=qml_debugIf you enable debugging in Qt Creator then there is no need to add anything in your .pro file. It will be added automatically during build.
@sierdzio
My goodness... am I really that blind.... It is written exactly as you wrote in the doc, and I even posted the link to that doc...Thanks for even taking the time to react and as such confront me with my infinite stupidity...
I should really delete this post and hide in shame... -
Haha, hey, don't worry we all make mistakes like that :-)