summaryrefslogtreecommitdiffstats
path: root/src/angle/src/compiler/translator_hlsl.pro
blob: e4afaec5c5db446b214b35f856dddd0dfc8aa83d (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
TEMPLATE = lib
CONFIG += static
TARGET = translator_hlsl

include(../config.pri)

INCLUDEPATH +=  $$ANGLE_DIR/src \
                $$ANGLE_DIR/include

DEFINES += COMPILER_IMPLEMENTATION

HEADERS += \
    $$ANGLE_DIR/src/compiler/DetectDiscontinuity.h \
    $$ANGLE_DIR/src/compiler/OutputHLSL.h \
    $$ANGLE_DIR/src/compiler/SearchSymbol.h \
    $$ANGLE_DIR/src/compiler/TranslatorHLSL.h \
    $$ANGLE_DIR/src/compiler/UnfoldShortCircuit.h

SOURCES += \
    $$ANGLE_DIR/src/compiler/CodeGenHLSL.cpp \
    $$ANGLE_DIR/src/compiler/DetectDiscontinuity.cpp \
    $$ANGLE_DIR/src/compiler/OutputHLSL.cpp \
    $$ANGLE_DIR/src/compiler/SearchSymbol.cpp \
    $$ANGLE_DIR/src/compiler/TranslatorHLSL.cpp \
    $$ANGLE_DIR/src/compiler/UnfoldShortCircuit.cpp