Files
qt-creator/share/qtcreator/qml/qmlobserver/qml.pri
Kai Koehne 4201046b9b QmlObserver: Remove breadcrumb widget in observer mode
I wasn't able to get it working on Mac OS X: Putting it on top
of the QGraphicsView doesn't work because Cocoa doesn't allow a
widget to be on top of OpenGL viewport. Embedding it as a
QGraphicsProxyWidget produces lots of Cocoa warnings (raster engine related).

Anyhow, the same widget shows up in the Debugger/Observer tab of
Qt Creator.

Reviewed-by: Lasse Holmstedt
2010-11-11 12:51:15 +01:00

41 lines
970 B
Plaintext

QT += declarative script network sql
contains(QT_CONFIG, opengl) {
QT += opengl
DEFINES += GL_SUPPORTED
}
!exists($$[QT_INSTALL_HEADERS]/QtCore/private/qabstractanimation_p.h) {
DEFINES += NO_PRIVATE_HEADERS
}
INCLUDEPATH += $$PWD
HEADERS += $$PWD/qmlruntime.h \
$$PWD/proxysettings.h \
$$PWD/qdeclarativetester.h \
$$PWD/deviceorientation.h \
$$PWD/loggerwidget.h
SOURCES += $$PWD/qmlruntime.cpp \
$$PWD/proxysettings.cpp \
$$PWD/qdeclarativetester.cpp \
$$PWD/loggerwidget.cpp
RESOURCES += $$PWD/qmlruntime.qrc
OTHER_FILES += toolbarstyle.css
maemo5 {
QT += dbus
HEADERS += $$PWD/texteditautoresizer_maemo5.h
SOURCES += $$PWD/deviceorientation_maemo5.cpp
FORMS += $$PWD/recopts_maemo5.ui \
$$PWD/proxysettings_maemo5.ui
} else {
SOURCES += $$PWD/deviceorientation.cpp
FORMS += $$PWD/recopts.ui \
$$PWD/proxysettings.ui
}