Files
qt-creator/src/libs/qmljsdebugclient/qmljsdebugclient.qbs
Joerg Bornemann 0834958063 qbs files updated
Property bindings in ProductModules now need explicit Depends items.
Also, some Qt dependencies were propagated wrongly and are now
added explicitely.

Change-Id: I58cd389eb0ab106004b1d575438d1ad2ff36189f
Reviewed-by: Marco Bubke <marco.bubke@nokia.com>
2012-04-18 17:10:55 +02:00

52 lines
1.2 KiB
QML

import qbs.base 1.0
import "../QtcLibrary.qbs" as QtcLibrary
QtcLibrary {
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 {
Depends { name: "cpp" }
Depends { name: "symbianutils" }
cpp.includePaths: [
"."
]
}
}