Files
qt-creator/share/qtcreator/qml/qmlobserver/qmlobserver.pro
Lasse Holmstedt 2578810334 Debugging helpers: Preserve whole build log
Otherwise, users might only see parts of the build that succeeded, but
not the failed ones (depending on build order).

Reviewed-by: ckamm
2010-10-04 12:03:35 +02:00

27 lines
553 B
Prolog

TEMPLATE = app
DEFINES += QMLOBSERVER
### FIXME: only debug plugins are now supported.
CONFIG -= release
CONFIG += debug
include(qml.pri)
SOURCES += main.cpp
exists($$PWD/qmljsdebugger/qmljsdebugger-lib.pri) {
# for building helpers within QT_INSTALL_DATA, we deploy the lib inside the observer directory.
include($$PWD/qmljsdebugger/qmljsdebugger-lib.pri)
} else {
include($$PWD/../qmljsdebugger/qmljsdebugger-lib.pri)
}
mac {
QMAKE_INFO_PLIST=Info_mac.plist
TARGET=QMLObserver
ICON=qml.icns
} else {
TARGET=qmlobserver
}