OSDN Git Service

qbs files updated
[qt-creator-jp/qt-creator-jp.git] / src / plugins / analyzerbase / analyzerbase.qbs
1 import qbs.base 1.0
2
3 import "../QtcPlugin.qbs" as QtcPlugin
4
5 QtcPlugin {
6     name: "AnalyzerBase"
7
8     Depends { name: "qt"; submodules: ['gui'] }
9     Depends { name: "Core" }
10     Depends { name: "CPlusPlus" }
11     Depends { name: "RemoteLinux" }
12     Depends { name: "ProjectExplorer" }
13     Depends { name: "TextEditor" }
14
15     Depends { name: "cpp" }
16     cpp.defines: ["ANALYZER_LIBRARY", "QT_NO_CAST_FROM_ASCII"]
17     cpp.includePaths: [
18         "..",
19         "../../libs",
20         buildDirectory
21     ]
22
23     files: [
24         "analyzerbase.qrc",
25         "analyzerbase_global.h",
26         "analyzerconstants.h",
27         "analyzeroptionspage.cpp",
28         "analyzeroptionspage.h",
29         "analyzerplugin.cpp",
30         "analyzerplugin.h",
31         "analyzerrunconfigwidget.cpp",
32         "analyzerrunconfigwidget.h",
33         "analyzerruncontrol.h",
34         "analyzersettings.cpp",
35         "analyzersettings.h",
36         "analyzerstartparameters.h",
37         "analyzerutils.cpp",
38         "analyzerutils.h",
39         "ianalyzerengine.cpp",
40         "ianalyzerengine.h",
41         "ianalyzertool.cpp",
42         "startremotedialog.cpp",
43         "startremotedialog.h",
44         "startremotedialog.ui",
45         "analyzermanager.cpp",
46         "analyzermanager.h",
47         "analyzerruncontrol.cpp",
48         "analyzerruncontrolfactory.cpp",
49         "analyzerruncontrolfactory.h",
50         "ianalyzertool.h",
51         "images/analyzer_category.png",
52         "images/analyzer_mode.png",
53         "images/analyzer_start_small.png"
54     ]
55
56     ProductModule {
57         Depends { name: "cpp" }
58         cpp.includePaths: [
59             "."
60         ]
61
62         Depends { name: "CPlusPlus" }
63     }
64 }
65