OSDN Git Service

qbs files updated
[qt-creator-jp/qt-creator-jp.git] / src / libs / qmleditorwidgets / qmleditorwidgets.qbs
1 import qbs.base 1.0
2 import "../QtcLibrary.qbs" as QtcLibrary
3
4 QtcLibrary {
5     name: "QmlEditorWidgets"
6
7     cpp.includePaths: [
8         ".",
9         "..",
10         "easingpane"
11     ]
12     cpp.defines: [
13         "QWEAKPOINTER_ENABLE_ARROW",
14         "BUILD_QMLEDITORWIDGETS_LIB",
15         "QT_CREATOR"
16     ]
17     cpp.optimization: "fast"
18
19     Depends { name: "cpp" }
20     Depends { name: "Qt"; submodules: ["gui", "declarative", "script"] }
21     Depends { name: "QmlJS" }
22
23     files: [
24         "resources.qrc",
25         "fontsizespinbox.h",
26         "filewidget.h",
27         "contextpanewidgetrectangle.h",
28         "contextpanewidgetimage.h",
29         "contextpanewidget.h",
30         "contextpanetextwidget.h",
31         "colorwidgets.h",
32         "colorbutton.h",
33         "colorbox.h",
34         "customcolordialog.h",
35         "gradientline.h",
36         "huecontrol.h",
37         "qmleditorwidgets_global.h",
38         "fontsizespinbox.cpp",
39         "filewidget.cpp",
40         "contextpanewidgetrectangle.cpp",
41         "contextpanewidgetimage.cpp",
42         "contextpanewidget.cpp",
43         "contextpanetextwidget.cpp",
44         "colorwidgets.cpp",
45         "colorbox.cpp",
46         "customcolordialog.cpp",
47         "huecontrol.cpp",
48         "gradientline.cpp",
49         "colorbutton.cpp",
50         "contextpanewidgetrectangle.ui",
51         "contextpanewidgetimage.ui",
52         "contextpanewidgetborderimage.ui",
53         "contextpanetext.ui",
54         "easingpane/easinggraph.cpp",
55         "easingpane/easingcontextpane.cpp",
56         "easingpane/easinggraph.h",
57         "easingpane/easingcontextpane.h",
58         "easingpane/easingpane.qrc",
59         "easingpane/easingcontextpane.ui"
60     ]
61
62     ProductModule {
63         Depends { name: "cpp" }
64         cpp.includePaths: ["."]
65     }
66 }
67