aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/gitlab/gitlab.qbs
blob: 8df71653f519276a608683fd6ef8473200da6838 (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
import qbs

QtcPlugin {
    name: "GitLab"

    Depends { name: "Core" }
    Depends { name: "ProjectExplorer" }
    Depends { name: "Git" }
    Depends { name: "VcsBase" }
    Depends { name: "Utils" }

    files: [
        "gitlabclonedialog.cpp",
        "gitlabclonedialog.h",
        "gitlabdialog.cpp",
        "gitlabdialog.h",
        "gitlaboptionspage.cpp",
        "gitlaboptionspage.h",
        "gitlabparameters.cpp",
        "gitlabparameters.h",
        "gitlabplugin.cpp",
        "gitlabplugin.h",
        "gitlabprojectsettings.cpp",
        "gitlabprojectsettings.h",
        "queryrunner.cpp",
        "queryrunner.h",
        "resultparser.cpp",
        "resultparser.h",
    ]
}