OSDN Git Service

qbs files updated
[qt-creator-jp/qt-creator-jp.git] / src / libs / glsl / glsl.qbs
1 import qbs.base 1.0
2 import "../QtcLibrary.qbs" as QtcLibrary
3
4 QtcLibrary {
5     name: "GLSL"
6
7     cpp.includePaths: [
8         ".",
9         ".."
10     ]
11     cpp.defines: [
12         "QT_CREATOR",
13         "GLSL_BUILD_LIB"
14     ]
15
16     Depends { name: "cpp" }
17     Depends { name: "Qt.gui" }
18
19     files: [
20         "glsl.h", "glsllexer.h", "glslparser.h", "glslparsertable_p.h", "glslast.h",
21         "glslastvisitor.h", "glslengine.h", "glslmemorypool.h", "glslastdump.h",
22         "glslsemantic.h", "glsltype.h", "glsltypes.h", "glslsymbol.h", "glslsymbols.h",
23         "glslkeywords.cpp", "glslparser.cpp", "glslparsertable.cpp",
24         "glsllexer.cpp", "glslast.cpp",
25         "glslastvisitor.cpp", "glslengine.cpp", "glslmemorypool.cpp", "glslastdump.cpp",
26         "glslsemantic.cpp", "glsltype.cpp", "glsltypes.cpp", "glslsymbol.cpp", "glslsymbols.cpp",
27         "glsl.g"
28     ]
29
30     ProductModule {
31         Depends { name: "cpp" }
32         cpp.includePaths: ["."]
33     }
34 }
35