summaryrefslogtreecommitdiff
path: root/src/plugins/python/python.qbs
blob: 9fd37a477772b501792931f2421c9853d224d918 (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
import qbs 1.0

QtcPlugin {
    name: "Python"

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

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

    Group {
        name: "General"
        files: [
            "python.qrc",
            "pythoneditor.cpp",
            "pythoneditor.h",
            "pythonconstants.h",
            "pythonplugin.cpp",
            "pythonplugin.h",
            "pythonhighlighter.h",
            "pythonhighlighter.cpp",
            "pythonindenter.cpp",
            "pythonindenter.h",
            "pythonformattoken.h",
            "pythonproject.cpp",
            "pythonproject.h",
            "pythonrunconfiguration.cpp",
            "pythonrunconfiguration.h",
            "pythonscanner.h",
            "pythonscanner.cpp",
            "pythonsettings.cpp",
            "pythonsettings.h",
            "pythonutils.cpp",
            "pythonutils.h",
        ]
    }
}