diff options
author | Orgad Shaneh <orgads@gmail.com> | 2012-02-26 19:44:11 +0200 |
---|---|---|
committer | Joerg Bornemann <joerg.bornemann@nokia.com> | 2012-02-27 19:30:08 +0100 |
commit | 6abe727306dc820139986a48010695aced4981e4 (patch) | |
tree | 2c82a1599a1a463e65189505b65319fdff2d7e5c /src/plugins/todo | |
parent | ed175e8494ead429f01aeed46dae1746a2f68bce (diff) | |
download | qt-creator-6abe727306dc820139986a48010695aced4981e4.tar.gz |
Todo: Add qbs file
Change-Id: Iefe74dff6663e14dc047146bbc92a9ad42ce0131
Reviewed-by: Joerg Bornemann <joerg.bornemann@nokia.com>
Diffstat (limited to 'src/plugins/todo')
-rw-r--r-- | src/plugins/todo/todo.qbs | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/src/plugins/todo/todo.qbs b/src/plugins/todo/todo.qbs new file mode 100644 index 0000000000..88ecffed7e --- /dev/null +++ b/src/plugins/todo/todo.qbs @@ -0,0 +1,57 @@ +import qbs.base 1.0 + +import "../QtcPlugin.qbs" as QtcPlugin + +QtcPlugin { + name: "Todo" + + Depends { name: "qt"; submodules: ['gui'] } + Depends { name: "Core" } + Depends { name: "TextEditor" } + Depends { name: "ProjectExplorer" } + Depends { name: "CPlusPlus" } + Depends { name: "CppTools" } + Depends { name: "QmlJs" } + + Depends { name: "cpp" } + cpp.defines: base.concat(["QT_NO_CAST_TO_ASCII"]) + cpp.includePaths: [ + "..", + "../../libs", + buildDirectory + ] + + files: [ + "constants.h", + "cpptodoitemsscanner.cpp", + "cpptodoitemsscanner.h", + "keyword.cpp", + "keyworddialog.cpp", + "keyworddialog.h", + "keyworddialog.ui", + "keyword.h", + "lineparser.cpp", + "lineparser.h", + "optionsdialog.cpp", + "optionsdialog.h", + "optionsdialog.ui", + "optionspage.cpp", + "optionspage.h", + "qmljstodoitemsscanner.cpp", + "qmljstodoitemsscanner.h", + "settings.cpp", + "settings.h", + "todoitem.h", + "todoitemsmodel.cpp", + "todoitemsmodel.h", + "todoitemsprovider.cpp", + "todoitemsprovider.h", + "todoitemsscanner.cpp", + "todoitemsscanner.h", + "todooutputpane.cpp", + "todooutputpane.h", + "todoplugin.cpp", + "todoplugin.h", + "todoplugin.qrc" + ] +} |