forked from qt-creator/qt-creator
Qt5 has renamed the service 'QDeclarativeEngine' to 'QmlDebugger'. Add a new client to connect to the service. Change-Id: I3a03181c4f34c311e47d4a963283b66dc778726b Reviewed-by: Kai Koehne <kai.koehne@nokia.com>
53 lines
1.2 KiB
QML
53 lines
1.2 KiB
QML
import qbs.base 1.0
|
|
|
|
DynamicLibrary {
|
|
name: "QmlJSDebugClient"
|
|
destination: "lib"
|
|
|
|
cpp.includePaths: [
|
|
".",
|
|
".."
|
|
]
|
|
cpp.defines: [
|
|
"QMLJSDEBUGCLIENT_LIBRARY",
|
|
"QMLJSDEBUGCLIENT_LIB"
|
|
]
|
|
|
|
Depends { name: "cpp" }
|
|
Depends { name: "Qt.gui" }
|
|
Depends { name: "Qt.network" }
|
|
Depends { name: "symbianutils" }
|
|
|
|
files: [
|
|
"qdeclarativedebugclient.cpp",
|
|
"qdeclarativeoutputparser.cpp",
|
|
"qdeclarativeoutputparser.h",
|
|
"qmljsdebugclient_global.h",
|
|
"qmljsdebugclientconstants.h",
|
|
"qmlprofilereventlocation.h",
|
|
"qmlprofilertraceclient.cpp",
|
|
"qpacketprotocol.cpp",
|
|
"qv8profilerclient.cpp",
|
|
"qv8profilerclient.h",
|
|
"qdeclarativedebugclient.h",
|
|
"qmlenginedebugclient.cpp",
|
|
"qmlenginedebugclient.h",
|
|
"qmlprofilereventtypes.h",
|
|
"qmlprofilertraceclient.h",
|
|
"qpacketprotocol.h",
|
|
"qdebugmessageclient.cpp",
|
|
"qdebugmessageclient.h",
|
|
"qdeclarativeengineclient.h",
|
|
"qmldebuggerclient.h",
|
|
"qmldebuggerclient.cpp"
|
|
]
|
|
|
|
ProductModule {
|
|
Depends { name: "symbianutils" }
|
|
cpp.includePaths: [
|
|
"."
|
|
]
|
|
}
|
|
}
|
|
|