Files
qt-creator/src/libs/qmljsdebugclient/qmljsdebugclient.qbs
Aurindam Jana 66ed2b37ba QmlDebugging: Add service client for QmlDebugger
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>
2012-03-22 14:21:53 +01:00

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: [
"."
]
}
}