aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/glsleditor/glsleditor.qbs
blob: 23f7b4f4293442faa590672d138b45be7eb8b91d (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
import qbs 1.0

QtcPlugin {
    name: "GLSLEditor"

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

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

    files: [
        "glslautocompleter.cpp",
        "glslautocompleter.h",
        "glslcompletionassist.cpp",
        "glslcompletionassist.h",
        "glsleditor.cpp",
        "glsleditor.h",
        "glsleditor.qrc",
        "glsleditorconstants.h",
        "glsleditorplugin.cpp",
        "glsleditorplugin.h",
        "glslhighlighter.cpp",
        "glslhighlighter.h",
        "glslindenter.cpp",
        "glslindenter.h",
    ]
}