blob: 5af8d71c73b77732252186aeb812344c565380d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
TEMPLATE = subdirs
contains(QT_CONFIG, declarative) {
include(../../private_headers.pri)
exists($${QT_PRIVATE_HEADERS}/QtDeclarative/private/qdeclarativemetatype_p.h) {
SUBDIRS += qmldump ../../../share/qtcreator/qmljsdebugger qmlobserver
CONFIG += ordered
} else {
warning()
warning("QmlDump utility has been disabled")
warning("The helper depends on on private headers from QtDeclarative module.")
warning("This means the Qml editor will lack correct completion and type checking.")
warning("To enable it, pass 'QT_PRIVATE_HEADERS=$QTDIR/include' to qmake, where $QTDIR is the source directory of qt.")
warning()
warning("QmlObserver has been disabled")
warning("This application depends on private headers from QtDeclarative module.")
warning("This means the QML debugging facilities will be limited.")
warning("To enable it, pass 'QT_PRIVATE_HEADERS=$QTDIR/include' to qmake, where $QTDIR is the source directory of qt.")
warning()
}
}
|