summaryrefslogtreecommitdiffstats
path: root/src/angle/src/compiler/translator_hlsl.pro
diff options
context:
space:
mode:
Diffstat (limited to 'src/angle/src/compiler/translator_hlsl.pro')
-rw-r--r--src/angle/src/compiler/translator_hlsl.pro25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/angle/src/compiler/translator_hlsl.pro b/src/angle/src/compiler/translator_hlsl.pro
new file mode 100644
index 0000000000..e4afaec5c5
--- /dev/null
+++ b/src/angle/src/compiler/translator_hlsl.pro
@@ -0,0 +1,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