aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/analyzerbase/analyzerbase.qbs
blob: 05db2a4022c97c045635e880954d809be607aa25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
import qbs 1.0

QtcPlugin {
    name: "AnalyzerBase"

    Depends { name: "Qt.widgets" }
    Depends { name: "Utils" }
    Depends { name: "QtcSsh" }

    Depends { name: "Core" }
    Depends { name: "CppTools" }
    Depends { name: "ProjectExplorer" }
    Depends { name: "TextEditor" }

    files: [
        "analyzerbase.qrc",
        "analyzerbase_global.h",
        "analyzerconstants.h",
        "analyzermanager.cpp",
        "analyzermanager.h",
        "analyzerplugin.cpp",
        "analyzerplugin.h",
        "analyzerrunconfigwidget.cpp",
        "analyzerrunconfigwidget.h",
        "analyzerruncontrol.cpp",
        "analyzerruncontrol.h",
        "analyzerstartparameters.h",
        "analyzerutils.cpp",
        "analyzerutils.h",
        "detailederrorview.cpp",
        "detailederrorview.h",
        "diagnosticlocation.cpp",
        "diagnosticlocation.h",
        "ianalyzertool.cpp",
        "ianalyzertool.h",
        "startremotedialog.cpp",
        "startremotedialog.h",
        "images/analyzer_category.png",
        "images/analyzer_start_small.png",
        "images/analyzer_stop_small.png",
        "images/mode_analyze.png",
        "images/mode_analyze@2x.png",
    ]

    Export {
        Depends { name: "CPlusPlus" }
    }
}