diff options
author | Kai Koehne <kai.koehne@nokia.com> | 2010-04-19 07:08:28 (GMT) |
---|---|---|
committer | Kai Koehne <kai.koehne@nokia.com> | 2010-04-20 13:00:01 (GMT) |
commit | 831b27e8fb9d12345c33315b7d7c08b613e3d4bb (patch) | |
tree | f124210d62ffa0f2e5980f3471c7a2b8b8d1e752 /tools/qml/qml.pri | |
parent | 76670cb51e53140ccd2873e627708dc73c12d9b3 (diff) | |
download | Qt-831b27e8fb9d12345c33315b7d7c08b613e3d4bb.zip Qt-831b27e8fb9d12345c33315b7d7c08b613e3d4bb.tar.gz Qt-831b27e8fb9d12345c33315b7d7c08b613e3d4bb.tar.bz2 |
Show command line help / qml runtime output in GUI
Since qml is a GUI program, debugging output isn't visible by default
for Windows/Mac users. Therefore provide command line help in a dialog (Windows), and runtime errors/warnings in a separate top level window.
Done together with mae.
Reviewed-by: mae
Diffstat (limited to 'tools/qml/qml.pri')
-rw-r--r-- | tools/qml/qml.pri | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tools/qml/qml.pri b/tools/qml/qml.pri index c48e919..d343c76 100644 --- a/tools/qml/qml.pri +++ b/tools/qml/qml.pri @@ -10,11 +10,13 @@ HEADERS += $$PWD/qmlruntime.h \ $$PWD/proxysettings.h \ $$PWD/qdeclarativetester.h \ $$PWD/deviceorientation.h \ - $$PWD/qdeclarativefolderlistmodel.h + $$PWD/qdeclarativefolderlistmodel.h \ + $$PWD/loggerwidget.h SOURCES += $$PWD/qmlruntime.cpp \ $$PWD/proxysettings.cpp \ $$PWD/qdeclarativetester.cpp \ - $$PWD/qdeclarativefolderlistmodel.cpp + $$PWD/qdeclarativefolderlistmodel.cpp \ + $$PWD/loggerwidget.cpp RESOURCES = $$PWD/qmlruntime.qrc maemo5 { @@ -26,4 +28,3 @@ FORMS = $$PWD/recopts.ui \ $$PWD/proxysettings.ui include(../shared/deviceskin/deviceskin.pri) - |