OSDN Git Service

9ca80f21af1fa468365e6ca457f573203903c9d2
[qt-creator-jp/qt-creator-jp.git] / src / libs / qmljsdebugclient / qmljsdebugclient.qbs
1 import qbs.base 1.0
2 import "../QtcLibrary.qbs" as QtcLibrary
3
4 QtcLibrary {
5     name: "QmlJSDebugClient"
6
7     cpp.includePaths: [
8         ".",
9         ".."
10     ]
11     cpp.defines: [
12         "QMLJSDEBUGCLIENT_LIBRARY",
13         "QMLJSDEBUGCLIENT_LIB"
14     ]
15
16     Depends { name: "cpp" }
17     Depends { name: "Qt.gui" }
18     Depends { name: "Qt.network" }
19     Depends { name: "symbianutils" }
20
21     files: [
22         "qdeclarativedebugclient.cpp",
23         "qdeclarativeoutputparser.cpp",
24         "qdeclarativeoutputparser.h",
25         "qmljsdebugclient_global.h",
26         "qmljsdebugclientconstants.h",
27         "qmlprofilereventlist.h",
28         "qmlprofilertraceclient.cpp",
29         "qpacketprotocol.cpp",
30         "qv8profilerclient.cpp",
31         "qv8profilerclient.h",
32         "qdeclarativedebugclient.h",
33         "qdeclarativeenginedebug.cpp",
34         "qdeclarativeenginedebug.h",
35         "qmlprofilereventtypes.h",
36         "qmlprofilertraceclient.h",
37         "qpacketprotocol.h",
38         "qdebugmessageclient.cpp",
39         "qmlprofilereventlist.cpp",
40         "qdebugmessageclient.h"
41     ]
42
43     ProductModule {
44         Depends { name: "symbianutils" }
45         cpp.includePaths: [
46             "."
47         ]
48     }
49 }
50