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/plugins/analyzerbase | |
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/plugins/analyzerbase')
-rw-r--r-- | src/plugins/analyzerbase/analyzerbase.qbs | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/src/plugins/analyzerbase/analyzerbase.qbs b/src/plugins/analyzerbase/analyzerbase.qbs new file mode 100644 index 0000000000..7b0565b0cd --- /dev/null +++ b/src/plugins/analyzerbase/analyzerbase.qbs @@ -0,0 +1,67 @@ +import qbs.base 1.0 + +import "../QtcPlugin.qbs" as QtcPlugin + +QtcPlugin { + name: "AnalyzerBase" + + Depends { name: "qt"; submodules: ['gui'] } + Depends { name: "utils" } + Depends { name: "extensionsystem" } + Depends { name: "aggregation" } + Depends { name: "Core" } + Depends { name: "CPlusPlus" } + Depends { name: "RemoteLinux" } + Depends { name: "ProjectExplorer" } + Depends { name: "TextEditor" } + + Depends { name: "cpp" } + cpp.defines: ["ANALYZER_LIBRARY", "QT_NO_CAST_FROM_ASCII"] + cpp.includePaths: [ + "..", + "../../libs", + buildDirectory + ] + + files: [ + "analyzerbase.qrc", + "analyzerbase_global.h", + "analyzerconstants.h", + "analyzeroptionspage.cpp", + "analyzeroptionspage.h", + "analyzerplugin.cpp", + "analyzerplugin.h", + "analyzerrunconfigwidget.cpp", + "analyzerrunconfigwidget.h", + "analyzerruncontrol.h", + "analyzersettings.cpp", + "analyzersettings.h", + "analyzerstartparameters.h", + "analyzerutils.cpp", + "analyzerutils.h", + "ianalyzerengine.cpp", + "ianalyzerengine.h", + "ianalyzertool.cpp", + "startremotedialog.cpp", + "startremotedialog.h", + "startremotedialog.ui", + "analyzermanager.cpp", + "analyzermanager.h", + "analyzerruncontrol.cpp", + "analyzerruncontrolfactory.cpp", + "analyzerruncontrolfactory.h", + "ianalyzertool.h", + "images/analyzer_category.png", + "images/analyzer_mode.png", + "images/analyzer_start_small.png" + ] + + ProductModule { + cpp.includePaths: [ + "." + ] + + Depends { name: "CPlusPlus" } + } +} + |