summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorassiduous <assiduous@diligentgraphics.com>2020-12-19 21:48:45 +0000
committerassiduous <assiduous@diligentgraphics.com>2020-12-19 21:48:45 +0000
commitd16a835f7f4571bc22e2dbd745e50f13010e3e2f (patch)
treef345cb3c1f7cc1ea3e3af97414f6a9154e601dc5
parentAdded DX compiler test (diff)
downloadDiligentCore-d16a835f7f4571bc22e2dbd745e50f13010e3e2f.tar.gz
DiligentCore-d16a835f7f4571bc22e2dbd745e50f13010e3e2f.zip
Tests: fixed CMake to remove DXCompilerTest when D3D12 is not supported
-rw-r--r--Tests/DiligentCoreAPITest/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tests/DiligentCoreAPITest/CMakeLists.txt b/Tests/DiligentCoreAPITest/CMakeLists.txt
index 9f7d69fd..4fff3dae 100644
--- a/Tests/DiligentCoreAPITest/CMakeLists.txt
+++ b/Tests/DiligentCoreAPITest/CMakeLists.txt
@@ -18,7 +18,7 @@ if(NOT TARGET Diligent-HLSL2GLSLConverterLib)
endif()
if(NOT D3D12_SUPPORTED)
- list(REMOVE_ITEM SOURCE ${CMAKE_CURRENT_SOURCE_DIR}/src/DXCTest.cpp)
+ list(REMOVE_ITEM SOURCE ${CMAKE_CURRENT_SOURCE_DIR}/src/DXCompilerTest.cpp)
endif()
if(PLATFORM_WIN32)