summaryrefslogtreecommitdiff
path: root/src/plugins/diffeditor/diffeditor.qbs
blob: 69ef2c01dca16a701bad2218238225f6ed3b0e06 (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
import qbs.base 1.0

import QtcPlugin

QtcPlugin {
    name: "DiffEditor"

    Depends { name: "Qt.widgets" }
    Depends { name: "Core" }
    Depends { name: "TextEditor" }
    Depends { name: "Find" }


    files: [
        "diffeditor.cpp",
        "diffeditor.h",
        "diffeditor_global.h",
        "diffeditorconstants.h",
        "diffeditorfactory.cpp",
        "diffeditorfactory.h",
        "diffeditorfile.cpp",
        "diffeditorfile.h",
        "diffeditorplugin.cpp",
        "diffeditorplugin.h",
        "diffeditorwidget.cpp",
        "diffeditorwidget.h",
        "differ.cpp",
        "differ.h",
        "diffshoweditor.cpp",
        "diffshoweditor.h",
        "diffshoweditorfactory.cpp",
        "diffshoweditorfactory.h",
    ]
}