summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsEngineVulkan
diff options
context:
space:
mode:
authorazhirnov <zh1dron@gmail.com>2020-08-25 01:49:03 +0000
committerazhirnov <zh1dron@gmail.com>2020-08-25 01:49:03 +0000
commitb555a964fdbc5b593a7fe4ac2eb070a21f7c866b (patch)
tree55fab7e1c7ce795f5a407da7671e2a80e9013f4b /Graphics/GraphicsEngineVulkan
parentMerge branch 'master' into mesh_shader (diff)
downloadDiligentCore-b555a964fdbc5b593a7fe4ac2eb070a21f7c866b.tar.gz
DiligentCore-b555a964fdbc5b593a7fe4ac2eb070a21f7c866b.zip
added namespace to macros
Diffstat (limited to 'Graphics/GraphicsEngineVulkan')
-rw-r--r--Graphics/GraphicsEngineVulkan/CMakeLists.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/Graphics/GraphicsEngineVulkan/CMakeLists.txt b/Graphics/GraphicsEngineVulkan/CMakeLists.txt
index edb18711..647cf48f 100644
--- a/Graphics/GraphicsEngineVulkan/CMakeLists.txt
+++ b/Graphics/GraphicsEngineVulkan/CMakeLists.txt
@@ -226,12 +226,12 @@ if(NOT Vulkan_FOUND)
endif()
endif()
if(EXISTS ${Vulkan_BINARY})
- set(HAS_VK_DXIL_COMPILER TRUE CACHE INTERNAL "" FORCE)
+ set(DILIGENT_HAS_VK_DXIL_COMPILER TRUE CACHE INTERNAL "" FORCE)
set(DXC_VK_COMPILER_PATH "${Vulkan_BINARY}" CACHE INTERNAL "" FORCE)
- target_compile_definitions(Diligent-GraphicsEngineVk-static PRIVATE HAS_VK_DXIL_COMPILER)
+ target_compile_definitions(Diligent-GraphicsEngineVk-static PRIVATE DILIGENT_HAS_VK_DXIL_COMPILER)
message(STATUS "Found DXIL compiler for Vulkan")
else()
- set(HAS_VK_DXIL_COMPILER FALSE CACHE INTERNAL "" FORCE)
+ set(DILIGENT_HAS_VK_DXIL_COMPILER FALSE CACHE INTERNAL "" FORCE)
endif()
if(PLATFORM_WIN32)