forked from qt-creator/qt-creator
The code of the qmlprofiler client has become a bit too complex, this patch reorganizes the modules in a more sensible way, having the modules communicate with each other through a state machine instead of the excess of signals and slots from before. Change-Id: I76f7313779888a1bd07a1cdb1acbf2e47aacf42a Reviewed-by: Kai Koehne <kai.koehne@nokia.com>
50 lines
1.1 KiB
QML
50 lines
1.1 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",
|
|
"qdeclarativeenginedebug.cpp",
|
|
"qdeclarativeenginedebug.h",
|
|
"qmlprofilereventtypes.h",
|
|
"qmlprofilertraceclient.h",
|
|
"qpacketprotocol.h",
|
|
"qdebugmessageclient.cpp",
|
|
"qdebugmessageclient.h"
|
|
]
|
|
|
|
ProductModule {
|
|
Depends { name: "symbianutils" }
|
|
cpp.includePaths: [
|
|
"."
|
|
]
|
|
}
|
|
}
|
|
|