summaryrefslogtreecommitdiff
path: root/src/libs/glsl/glsl.qbs
blob: 4a9d6e4165767c58fdedc259532d1c8072895c5d (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
42
43
44
import qbs.base 1.0
import QtcLibrary

QtcLibrary {
    name: "GLSL"

    cpp.defines: base.concat([
        "GLSL_BUILD_LIB"
    ])

    Depends { name: "Qt.gui" }

    files: [
        "glsl.g",
        "glsl.h",
        "glslast.cpp",
        "glslast.h",
        "glslastdump.cpp",
        "glslastdump.h",
        "glslastvisitor.cpp",
        "glslastvisitor.h",
        "glslengine.cpp",
        "glslengine.h",
        "glslkeywords.cpp",
        "glsllexer.cpp",
        "glsllexer.h",
        "glslmemorypool.cpp",
        "glslmemorypool.h",
        "glslparser.cpp",
        "glslparser.h",
        "glslparsertable.cpp",
        "glslparsertable_p.h",
        "glslsemantic.cpp",
        "glslsemantic.h",
        "glslsymbol.cpp",
        "glslsymbol.h",
        "glslsymbols.cpp",
        "glslsymbols.h",
        "glsltype.cpp",
        "glsltype.h",
        "glsltypes.cpp",
        "glsltypes.h",
    ]
}