瀏覽代碼

Merge pull request #1093 from Areloch/ForestWindDefoFeatureFix

Adds the hlsl and glsl wind deformation shader feature implementation code back into the cmake logic
Brian Roberts 2 年之前
父節點
當前提交
d074b58699
共有 1 個文件被更改,包括 6 次插入0 次删除
  1. 6 0
      Engine/source/CMakeLists.txt

+ 6 - 0
Engine/source/CMakeLists.txt

@@ -130,6 +130,12 @@ torqueAddSourceDirectories("module")
 
 # Handle forest
 torqueAddSourceDirectories("forest" "forest/ts")
+if(TORQUE_OPENGL)
+  torqueAddSourceDirectories("forest" "forest/glsl")
+endif(TORQUE_OPENGL)
+if(TORQUE_D3D11)
+  torqueAddSourceDirectories("forest" "forest/hlsl")
+endif(TORQUE_OPENGL)
 
 # Handle shadergen
 torqueAddSourceDirectories("shaderGen")