2012-02-09 14:30:09 +01:00
|
|
|
import qbs.base 1.0
|
2012-04-01 19:21:05 +03:00
|
|
|
import "../QtcLibrary.qbs" as QtcLibrary
|
2012-02-09 14:30:09 +01:00
|
|
|
|
2012-04-01 19:21:05 +03:00
|
|
|
QtcLibrary {
|
2012-02-09 14:30:09 +01:00
|
|
|
name: "QmlJSDebugClient"
|
|
|
|
|
|
|
|
|
|
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",
|
|
|
|
|
"qmlprofilereventlist.h",
|
|
|
|
|
"qmlprofilertraceclient.cpp",
|
|
|
|
|
"qpacketprotocol.cpp",
|
|
|
|
|
"qv8profilerclient.cpp",
|
|
|
|
|
"qv8profilerclient.h",
|
|
|
|
|
"qdeclarativedebugclient.h",
|
|
|
|
|
"qdeclarativeenginedebug.cpp",
|
|
|
|
|
"qdeclarativeenginedebug.h",
|
|
|
|
|
"qmlprofilereventtypes.h",
|
|
|
|
|
"qmlprofilertraceclient.h",
|
|
|
|
|
"qpacketprotocol.h",
|
|
|
|
|
"qdebugmessageclient.cpp",
|
|
|
|
|
"qmlprofilereventlist.cpp",
|
|
|
|
|
"qdebugmessageclient.h"
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
ProductModule {
|
2012-04-18 17:02:20 +02:00
|
|
|
Depends { name: "cpp" }
|
2012-02-09 14:30:09 +01:00
|
|
|
Depends { name: "symbianutils" }
|
|
|
|
|
cpp.includePaths: [
|
|
|
|
|
"."
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|