aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/mercurial/mercurial.qbs
blob: 9d248588056720a6b772213cc9b38fe02ee88665 (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
import qbs 1.0

QtcPlugin {
    name: "Mercurial"

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

    Depends { name: "Core" }
    Depends { name: "DiffEditor" }
    Depends { name: "TextEditor" }
    Depends { name: "VcsBase" }

    files: [
        "annotationhighlighter.cpp",
        "annotationhighlighter.h",
        "authenticationdialog.cpp",
        "authenticationdialog.h",
        "commiteditor.cpp",
        "commiteditor.h",
        "constants.h",
        "mercurialclient.cpp",
        "mercurialclient.h",
        "mercurialcommitwidget.cpp",
        "mercurialcommitwidget.h",
        "mercurialeditor.cpp",
        "mercurialeditor.h",
        "mercurialplugin.cpp",
        "mercurialsettings.cpp",
        "mercurialsettings.h",
        "mercurialtr.h",
        "revertdialog.cpp",
        "revertdialog.h",
        "srcdestdialog.cpp",
        "srcdestdialog.h"
    ]
}