summaryrefslogtreecommitdiff
path: root/src/plugins/bineditor/bineditor.qbs
blob: 6a94295cef26b1f11f05e0bdc034a12b66d69076 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import qbs 1.0

QtcPlugin {
    name: "BinEditor"

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

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

    files: [
        "bineditor_global.h",
        "bineditorconstants.h",
        "bineditorwidget.cpp", "bineditorwidget.h",
        "bineditorplugin.cpp", "bineditorplugin.h",
        "bineditorservice.h",
        "markup.cpp",
        "markup.h",
    ]
}