summaryrefslogtreecommitdiff
path: root/src/plugins/baremetal/baremetal.qbs
blob: b50db5769ebbf764be2ac6a95d35f2c17dfe5ea8 (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
38
39
40
41
import qbs

QtcPlugin {
    name: "BareMetal"

    Depends { name: "Qt"; submodules: ["network", "widgets"]; }
    Depends { name: "QtcSsh" }
    Depends { name: "Utils" }

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

    files: [
        "baremetal.qrc",
        "baremetalconstants.h",
        "baremetalcustomrunconfiguration.cpp", "baremetalcustomrunconfiguration.h",
        "baremetaldevice.cpp", "baremetaldevice.h",
        "baremetaldeviceconfigurationwidget.cpp", "baremetaldeviceconfigurationwidget.h",
        "baremetaldeviceconfigurationwizard.cpp", "baremetaldeviceconfigurationwizard.h",
        "baremetaldeviceconfigurationwizardpages.cpp", "baremetaldeviceconfigurationwizardpages.h",
        "baremetalplugin.cpp", "baremetalplugin.h",
        "baremetalrunconfiguration.cpp", "baremetalrunconfiguration.h",
        "baremetaldebugsupport.cpp", "baremetaldebugsupport.h",
        "gdbserverproviderprocess.cpp", "gdbserverproviderprocess.h",
        "gdbserverproviderssettingspage.cpp", "gdbserverproviderssettingspage.h",
        "gdbserverprovider.cpp", "gdbserverprovider.h",
        "gdbserverproviderchooser.cpp", "gdbserverproviderchooser.h",
        "gdbserverprovidermanager.cpp", "gdbserverprovidermanager.h",
        "openocdgdbserverprovider.cpp", "openocdgdbserverprovider.h",
        "defaultgdbserverprovider.cpp", "defaultgdbserverprovider.h",
        "stlinkutilgdbserverprovider.cpp", "stlinkutilgdbserverprovider.h",
        "iarewtoolchain.cpp", "iarewtoolchain.h",
        "keiltoolchain.cpp", "keiltoolchain.h",
        "sdcctoolchain.cpp", "sdcctoolchain.h",
        "iarewparser.cpp", "iarewparser.h",
        "keilparser.cpp", "keilparser.h",
        "sdccparser.cpp", "sdccparser.h",
    ]
}