forked from qt-creator/qt-creator
Otherwise, users might only see parts of the build that succeeded, but not the failed ones (depending on build order). Reviewed-by: ckamm
27 lines
553 B
Prolog
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
|
|
}
|
|
|