diff options
author | Joerg Bornemann <[email protected]> | 2012-02-09 14:30:09 +0100 |
---|---|---|
committer | hjk <[email protected]> | 2012-02-20 19:18:18 +0100 |
commit | ff92cdec43e90129d4c230bab9e5e0fc0de1b6d7 (patch) | |
tree | 2fc5ff11681b160460696a2bfd3b2c6abaf80081 /src/plugins/valgrind/valgrind.qbs | |
parent | 74da217204ff126f6d5e67311bc9845a1a459bc1 (diff) |
add qbs files
Change-Id: If6bf71797ae81655d24a77e6badb86a77312af38
Reviewed-by: hjk <[email protected]>
Diffstat (limited to 'src/plugins/valgrind/valgrind.qbs')
-rw-r--r-- | src/plugins/valgrind/valgrind.qbs | 125 |
1 files changed, 125 insertions, 0 deletions
diff --git a/src/plugins/valgrind/valgrind.qbs b/src/plugins/valgrind/valgrind.qbs new file mode 100644 index 00000000000..b1d99cda6cd --- /dev/null +++ b/src/plugins/valgrind/valgrind.qbs @@ -0,0 +1,125 @@ +import qbs.base 1.0 + +import "../QtcPlugin.qbs" as QtcPlugin + +QtcPlugin { + name: "Valgrind" + + Depends { name: "qt"; submodules: ['gui', 'network'] } + Depends { name: "utils" } + Depends { name: "extensionsystem" } + Depends { name: "aggregation" } + Depends { name: "Core" } + Depends { name: "AnalyzerBase" } + Depends { name: "ProjectExplorer" } + Depends { name: "TextEditor" } + Depends { name: "RemoteLinux" } + Depends { name: "symbianutils"} + Depends { name: "CPlusPlus"} + + Depends { name: "cpp" } + cpp.includePaths: [ + ".", + "valgrind", + "..", + "../../libs", + buildDirectory + ] + + files: [ + "callgrindcostdelegate.cpp", + "callgrindcostdelegate.h", + "callgrindcostview.cpp", + "callgrindcostview.h", + "callgrindengine.cpp", + "callgrindengine.h", + "callgrindhelper.cpp", + "callgrindhelper.h", + "callgrindnamedelegate.cpp", + "callgrindnamedelegate.h", + "callgrindtextmark.cpp", + "callgrindtextmark.h", + "callgrindtool.cpp", + "callgrindtool.h", + "callgrindvisualisation.cpp", + "callgrindvisualisation.h", + "memcheckengine.cpp", + "memcheckengine.h", + "memcheckerrorview.cpp", + "memcheckerrorview.h", + "memchecktool.cpp", + "memchecktool.h", + "suppressiondialog.cpp", + "suppressiondialog.h", + "valgrindconfigwidget.cpp", + "valgrindconfigwidget.h", + "valgrindconfigwidget.ui", + "valgrindengine.cpp", + "valgrindengine.h", + "valgrindplugin.cpp", + "valgrindplugin.h", + "valgrindsettings.cpp", + "valgrindsettings.h", + "valgrindtool.cpp", + "valgrindtool.h", + "workarounds.cpp", + "workarounds.h", + "valgrindprocess.cpp", + "valgrindprocess.h", + "valgrindrunner.cpp", + "valgrindrunner.h", + "callgrind/callgrindabstractmodel.h", + "callgrind/callgrindcallmodel.cpp", + "callgrind/callgrindcallmodel.h", + "callgrind/callgrindcontroller.cpp", + "callgrind/callgrindcontroller.h", + "callgrind/callgrindcostitem.cpp", + "callgrind/callgrindcostitem.h", + "callgrind/callgrindcycledetection.cpp", + "callgrind/callgrindcycledetection.h", + "callgrind/callgrinddatamodel.cpp", + "callgrind/callgrinddatamodel.h", + "callgrind/callgrindfunction.cpp", + "callgrind/callgrindfunction.h", + "callgrind/callgrindfunction_p.h", + "callgrind/callgrindfunctioncall.cpp", + "callgrind/callgrindfunctioncall.h", + "callgrind/callgrindfunctioncycle.cpp", + "callgrind/callgrindfunctioncycle.h", + "callgrind/callgrindparsedata.cpp", + "callgrind/callgrindparsedata.h", + "callgrind/callgrindparser.cpp", + "callgrind/callgrindparser.h", + "callgrind/callgrindproxymodel.cpp", + "callgrind/callgrindproxymodel.h", + "callgrind/callgrindrunner.cpp", + "callgrind/callgrindrunner.h", + "callgrind/callgrindstackbrowser.cpp", + "callgrind/callgrindstackbrowser.h", + "memcheck/memcheckrunner.cpp", + "memcheck/memcheckrunner.h", + "xmlprotocol/announcethread.cpp", + "xmlprotocol/announcethread.h", + "xmlprotocol/error.cpp", + "xmlprotocol/error.h", + "xmlprotocol/errorlistmodel.cpp", + "xmlprotocol/errorlistmodel.h", + "xmlprotocol/frame.cpp", + "xmlprotocol/frame.h", + "xmlprotocol/modelhelpers.cpp", + "xmlprotocol/modelhelpers.h", + "xmlprotocol/parser.cpp", + "xmlprotocol/parser.h", + "xmlprotocol/stack.cpp", + "xmlprotocol/stack.h", + "xmlprotocol/stackmodel.cpp", + "xmlprotocol/stackmodel.h", + "xmlprotocol/status.cpp", + "xmlprotocol/status.h", + "xmlprotocol/suppression.cpp", + "xmlprotocol/suppression.h", + "xmlprotocol/threadedparser.cpp", + "xmlprotocol/threadedparser.h" + ] +} + |