diff options
author | Joerg Bornemann <joerg.bornemann@nokia.com> | 2012-02-09 14:30:09 +0100 |
---|---|---|
committer | hjk <qthjk@ovi.com> | 2012-02-20 19:18:18 +0100 |
commit | ff92cdec43e90129d4c230bab9e5e0fc0de1b6d7 (patch) | |
tree | 2fc5ff11681b160460696a2bfd3b2c6abaf80081 /src/libs/qmleditorwidgets | |
parent | 74da217204ff126f6d5e67311bc9845a1a459bc1 (diff) | |
download | qt-creator-ff92cdec43e90129d4c230bab9e5e0fc0de1b6d7.tar.gz |
add qbs files
Change-Id: If6bf71797ae81655d24a77e6badb86a77312af38
Reviewed-by: hjk <qthjk@ovi.com>
Diffstat (limited to 'src/libs/qmleditorwidgets')
-rw-r--r-- | src/libs/qmleditorwidgets/qmleditorwidgets.qbs | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/src/libs/qmleditorwidgets/qmleditorwidgets.qbs b/src/libs/qmleditorwidgets/qmleditorwidgets.qbs new file mode 100644 index 0000000000..55a7d8ce8c --- /dev/null +++ b/src/libs/qmleditorwidgets/qmleditorwidgets.qbs @@ -0,0 +1,66 @@ +import qbs.base 1.0 + +DynamicLibrary { + name: "QmlEditorWidgets" + destination: "lib" + + cpp.includePaths: [ + ".", + "..", + "easingpane" + ] + cpp.defines: [ + "QWEAKPOINTER_ENABLE_ARROW", + "BUILD_QMLEDITORWIDGETS_LIB", + "QT_CREATOR" + ] + cpp.optimization: "fast" + + Depends { name: "cpp" } + Depends { name: "Qt"; submodules: ["gui", "declarative", "script"] } + Depends { name: "QmlJS" } + + files: [ + "resources.qrc", + "fontsizespinbox.h", + "filewidget.h", + "contextpanewidgetrectangle.h", + "contextpanewidgetimage.h", + "contextpanewidget.h", + "contextpanetextwidget.h", + "colorwidgets.h", + "colorbutton.h", + "colorbox.h", + "customcolordialog.h", + "gradientline.h", + "huecontrol.h", + "qmleditorwidgets_global.h", + "fontsizespinbox.cpp", + "filewidget.cpp", + "contextpanewidgetrectangle.cpp", + "contextpanewidgetimage.cpp", + "contextpanewidget.cpp", + "contextpanetextwidget.cpp", + "colorwidgets.cpp", + "colorbox.cpp", + "customcolordialog.cpp", + "huecontrol.cpp", + "gradientline.cpp", + "colorbutton.cpp", + "contextpanewidgetrectangle.ui", + "contextpanewidgetimage.ui", + "contextpanewidgetborderimage.ui", + "contextpanetext.ui", + "easingpane/easinggraph.cpp", + "easingpane/easingcontextpane.cpp", + "easingpane/easinggraph.h", + "easingpane/easingcontextpane.h", + "easingpane/easingpane.qrc", + "easingpane/easingcontextpane.ui" + ] + + ProductModule { + cpp.includePaths: ["."] + } +} + |