aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/bineditor/bineditor.qbs
blob: b2fd675be869cd43a6890754e588685a73df50b5 (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
import qbs.base 1.0

import "../QtcPlugin.qbs" as QtcPlugin

QtcPlugin {
    name: "BinEditor"

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

    Depends { name: "cpp" }
    cpp.includePaths: [
        "..",
        "../../libs",
        buildDirectory
    ]

    files: [
        "bineditorplugin.h",
        "bineditor.h",
        "bineditorconstants.h",
        "markup.h",
        "bineditorplugin.cpp",
        "bineditor.cpp"
    ]
}