File: Target.pri

package info (click to toggle)
qtwebkit-opensource-src 5.7.1%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 291,692 kB
  • ctags: 268,122
  • sloc: cpp: 1,360,420; python: 70,286; ansic: 42,986; perl: 35,476; ruby: 12,236; objc: 9,465; xml: 8,396; asm: 3,873; yacc: 2,397; sh: 1,647; makefile: 650; lex: 644; java: 110
file content (153 lines) | stat: -rw-r--r-- 5,447 bytes parent folder | download
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
# -------------------------------------------------------------------
# Target file for the ANGLE static library
#
# See 'Tools/qmake/README' for an overview of the build system
# -------------------------------------------------------------------

TEMPLATE = lib
TARGET = ANGLE

include(ANGLE.pri)

CONFIG += staticlib

INCLUDEPATH += \
    $$SOURCE_DIR/src \
    $$SOURCE_DIR/src/compiler/preprocessor \
    $$SOURCE_DIR/include

HEADERS += \
    src/compiler/BaseTypes.h \
    src/compiler/BuiltInFunctionEmulator.h \
    src/compiler/Common.h \
    src/compiler/ConstantUnion.h \
    src/compiler/debug.h \
    src/compiler/depgraph/DependencyGraph.h \
    src/compiler/depgraph/DependencyGraphBuilder.h \
    src/compiler/depgraph/DependencyGraphOutput.h \
    src/compiler/DetectCallDepth.h \
    src/compiler/DetectDiscontinuity.h \
    src/compiler/Diagnostics.h \
    src/compiler/DirectiveHandler.h \
    src/compiler/ExtensionBehavior.h \
    src/compiler/ForLoopUnroll.h \
    src/compiler/glslang.h \
    src/compiler/HashNames.h \
    src/compiler/InfoSink.h \
    src/compiler/InitializeDll.h \
    src/compiler/InitializeGlobals.h \
    src/compiler/Initialize.h \
    src/compiler/InitializeParseContext.h \
    src/compiler/intermediate.h \
    src/compiler/localintermediate.h \
    src/compiler/MMap.h \
    src/compiler/MapLongVariableNames.h \
    src/compiler/osinclude.h \
    src/compiler/Pragma.h \
    src/compiler/preprocessor/DiagnosticsBase.h \
    src/compiler/preprocessor/DirectiveHandlerBase.h \
    src/compiler/preprocessor/DirectiveParser.h \
    src/compiler/preprocessor/Input.h \
    src/compiler/preprocessor/length_limits.h \
    src/compiler/preprocessor/Lexer.h \
    src/compiler/preprocessor/Macro.h \
    src/compiler/preprocessor/MacroExpander.h \
    src/compiler/preprocessor/numeric_lex.h \
    src/compiler/preprocessor/Preprocessor.h \
    src/compiler/preprocessor/SourceLocation.h \
    src/compiler/preprocessor/Token.h \
    src/compiler/preprocessor/Tokenizer.h \
    src/compiler/OutputESSL.h \
    src/compiler/OutputGLSL.h \
    src/compiler/OutputGLSLBase.h \
    src/compiler/OutputHLSL.h \
    src/compiler/ParseHelper.h \
    src/compiler/PoolAlloc.h \
    src/compiler/QualifierAlive.h \
    src/compiler/RemoveTree.h \
    src/compiler/RenameFunction.h \
    src/compiler/SearchSymbol.h \
    src/compiler/ShHandle.h \
    src/compiler/SymbolTable.h \
    src/compiler/timing/RestrictFragmentShaderTiming.h \
    src/compiler/timing/RestrictVertexShaderTiming.h \
    src/compiler/TranslatorESSL.h \
    src/compiler/TranslatorGLSL.h \
    src/compiler/TranslatorHLSL.h \
    src/compiler/Types.h \
    src/compiler/Uniform.h \
    src/compiler/UnfoldShortCircuit.h \
    src/compiler/util.h \
    src/compiler/ValidateLimitations.h \
    src/compiler/VariableInfo.h \
    src/compiler/VariablePacker.h \
    src/compiler/VersionGLSL.h \
    src/third_party/compiler/ArrayBoundsClamper.h

SOURCES += \
    src/compiler/BuiltInFunctionEmulator.cpp \
    src/compiler/CodeGenGLSL.cpp \
    src/compiler/Compiler.cpp \
    src/compiler/debug.cpp \
    src/compiler/depgraph/DependencyGraph.cpp \
    src/compiler/depgraph/DependencyGraphBuilder.cpp \
    src/compiler/depgraph/DependencyGraphOutput.cpp \
    src/compiler/depgraph/DependencyGraphTraverse.cpp \
    src/compiler/DetectCallDepth.cpp \
    src/compiler/DetectDiscontinuity.cpp \
    src/compiler/Diagnostics.cpp \
    src/compiler/DirectiveHandler.cpp \
    src/compiler/ForLoopUnroll.cpp \
    src/compiler/InfoSink.cpp \
    src/compiler/Initialize.cpp \
    src/compiler/InitializeDll.cpp \
    src/compiler/InitializeParseContext.cpp \
    src/compiler/Intermediate.cpp \
    src/compiler/intermOut.cpp \
    src/compiler/IntermTraverse.cpp \
    src/compiler/MapLongVariableNames.cpp \
    src/compiler/OutputESSL.cpp \
    src/compiler/OutputGLSL.cpp \
    src/compiler/OutputGLSLBase.cpp \
    src/compiler/OutputHLSL.cpp \
    src/compiler/parseConst.cpp \
    src/compiler/ParseHelper.cpp \
    src/compiler/PoolAlloc.cpp \
    src/compiler/QualifierAlive.cpp \
    src/compiler/RemoveTree.cpp \
    src/compiler/SearchSymbol.cpp \
    src/compiler/ShaderLang.cpp \
    src/compiler/SymbolTable.cpp \
    src/compiler/timing/RestrictFragmentShaderTiming.cpp \
    src/compiler/timing/RestrictVertexShaderTiming.cpp \
    src/compiler/TranslatorESSL.cpp \
    src/compiler/TranslatorGLSL.cpp \
    src/compiler/TranslatorHLSL.cpp \
    src/compiler/Uniform.cpp \
    src/compiler/UnfoldShortCircuit.cpp \
    src/compiler/util.cpp \
    src/compiler/ValidateLimitations.cpp \
    src/compiler/VariableInfo.cpp \
    src/compiler/VariablePacker.cpp \
    src/compiler/VersionGLSL.cpp \
    src/compiler/preprocessor/DiagnosticsBase.cpp \
    src/compiler/preprocessor/DirectiveHandlerBase.cpp \
    src/compiler/preprocessor/DirectiveParser.cpp \
    src/compiler/preprocessor/Input.cpp \
    src/compiler/preprocessor/Lexer.cpp \
    src/compiler/preprocessor/Macro.cpp \
    src/compiler/preprocessor/MacroExpander.cpp \
    src/compiler/preprocessor/Preprocessor.cpp \
    src/compiler/preprocessor/Token.cpp \
    src/third_party/compiler/ArrayBoundsClamper.cpp

win32: SOURCES += src/compiler/ossource_win.cpp
else: SOURCES += src/compiler/ossource_posix.cpp

# Make sure the derived sources are built
include(DerivedSources.pri)

CONFIG += compiling_thirdparty_code

# We do not need anything from Qt
QT =