aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/axivion/axivion.qbs
blob: b557fd57284aebbeda40ba5123a67f588306f753 (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
50
51
52
53
54
55
56
57
import qbs

QtcPlugin {
    name: "Axivion"

    Depends { name: "Core" }
    Depends { name: "Debugger" }
    Depends { name: "ExtensionSystem" }
    Depends { name: "ProjectExplorer" }
    Depends { name: "TextEditor" }
    Depends { name: "Utils" }
    Depends { name: "Qt"; submodules: ["network", "sql", "widgets"] }

    files: [
        "axivionperspective.cpp",
        "axivionperspective.h",
        "axivionplugin.cpp",
        "axivionplugin.h",
        "axivionsettings.cpp",
        "axivionsettings.h",
        "axiviontr.h",
        "dynamiclistmodel.cpp",
        "dynamiclistmodel.h",
        "issueheaderview.cpp",
        "issueheaderview.h",
        "localbuild.cpp",
        "localbuild.h",
    ]

    cpp.includePaths: base.concat(["."]) // needed for the generated stuff below

    Group {
        name: "Dashboard Communication"
        prefix: "dashboard/"

        files: [
            "concat.cpp",
            "concat.h",
            "dto.cpp",
            "dto.h",
            "error.cpp",
            "error.h",
        ]
    }

    Group {
        name: "long description"
        files: "AxivionDescription.md"
        fileTags: "pluginjson.longDescription"
    }

    Group {
        name: "images"
        files: "images/*.png"
        fileTags: "qt.core.resource_data"
    }
}