Files
qt-creator/share/qtcreator/templates/qmlapp/qmlapplicationviewer/qmlapplicationviewer.pri
Kai Koehne a10b26920b Qml: Replace 'inspector' by 'observer'
We should restrict ourselves to calling all qml debugging support
observer, instead of mixing qml debugger / inspector / observer
interchangeably.
2010-09-16 16:22:31 +02:00

22 lines
576 B
Plaintext

# This file should not be edited.
# Following versions of Qt Creator might offer new version.
QT += declarative
SOURCES += $$PWD/qmlapplicationviewer.cpp
HEADERS += $$PWD/qmlapplicationviewer.h
INCLUDEPATH += $$PWD
contains(DEFINES, QMLOBSERVER) {
CONFIG(debug, debug|release) {
isEmpty(QMLOBSERVER_PATH) {
warning(QMLOBSERVER_PATH was not set. QMLOBSERVER not activated.)
DEFINES -= QMLOBSERVER
} else {
include($$QMLOBSERVER_PATH/qmljsdebugger-lib.pri)
}
} else {
DEFINES -= QMLOBSERVER
}
}