summaryrefslogtreecommitdiffstats
path: root/Graphics
diff options
context:
space:
mode:
authorEgor Yusov <egor.yusov@gmail.com>2019-11-21 15:42:38 +0000
committerEgor Yusov <egor.yusov@gmail.com>2019-11-21 15:42:38 +0000
commit8f78f031df9aed3db619ee8e26d9d642504801dd (patch)
tree86f6bc4948bbd86fdb87e53b8c9911b0aade33b8 /Graphics
parentMinor CMake update (diff)
downloadDiligentCore-8f78f031df9aed3db619ee8e26d9d642504801dd.tar.gz
DiligentCore-8f78f031df9aed3db619ee8e26d9d642504801dd.zip
Renamed INSTALL_DILIGENT_CORE cmake option to DILIGENT_INSTALL_CORE
Diffstat (limited to 'Graphics')
-rw-r--r--Graphics/GLSLTools/CMakeLists.txt2
-rw-r--r--Graphics/GraphicsAccessories/CMakeLists.txt2
-rw-r--r--Graphics/GraphicsEngine/CMakeLists.txt2
-rw-r--r--Graphics/GraphicsEngineD3D11/CMakeLists.txt2
-rw-r--r--Graphics/GraphicsEngineD3D12/CMakeLists.txt2
-rw-r--r--Graphics/GraphicsEngineD3DBase/CMakeLists.txt2
-rw-r--r--Graphics/GraphicsEngineMetal/CMakeLists.txt2
-rw-r--r--Graphics/GraphicsEngineNextGenBase/CMakeLists.txt2
-rw-r--r--Graphics/GraphicsEngineOpenGL/CMakeLists.txt2
-rw-r--r--Graphics/GraphicsEngineVulkan/CMakeLists.txt2
-rw-r--r--Graphics/GraphicsTools/CMakeLists.txt2
-rw-r--r--Graphics/HLSL2GLSLConverterLib/CMakeLists.txt2
12 files changed, 12 insertions, 12 deletions
diff --git a/Graphics/GLSLTools/CMakeLists.txt b/Graphics/GLSLTools/CMakeLists.txt
index 7c3ee608..01fc9f15 100644
--- a/Graphics/GLSLTools/CMakeLists.txt
+++ b/Graphics/GLSLTools/CMakeLists.txt
@@ -78,6 +78,6 @@ set_target_properties(Diligent-GLSLTools PROPERTIES
FOLDER DiligentCore/Graphics
)
-if(INSTALL_DILIGENT_CORE)
+if(DILIGENT_INSTALL_CORE)
install_core_lib(Diligent-GLSLTools)
endif() \ No newline at end of file
diff --git a/Graphics/GraphicsAccessories/CMakeLists.txt b/Graphics/GraphicsAccessories/CMakeLists.txt
index 0a3ba647..8bfa0254 100644
--- a/Graphics/GraphicsAccessories/CMakeLists.txt
+++ b/Graphics/GraphicsAccessories/CMakeLists.txt
@@ -41,6 +41,6 @@ set_target_properties(Diligent-GraphicsAccessories PROPERTIES
FOLDER DiligentCore/Graphics
)
-if(INSTALL_DILIGENT_CORE)
+if(DILIGENT_INSTALL_CORE)
install_core_lib(Diligent-GraphicsAccessories)
endif() \ No newline at end of file
diff --git a/Graphics/GraphicsEngine/CMakeLists.txt b/Graphics/GraphicsEngine/CMakeLists.txt
index 7744e323..38db75e2 100644
--- a/Graphics/GraphicsEngine/CMakeLists.txt
+++ b/Graphics/GraphicsEngine/CMakeLists.txt
@@ -89,6 +89,6 @@ set_target_properties(Diligent-GraphicsEngine PROPERTIES
FOLDER DiligentCore/Graphics
)
-if(INSTALL_DILIGENT_CORE)
+if(DILIGENT_INSTALL_CORE)
install_core_lib(Diligent-GraphicsEngine)
endif() \ No newline at end of file
diff --git a/Graphics/GraphicsEngineD3D11/CMakeLists.txt b/Graphics/GraphicsEngineD3D11/CMakeLists.txt
index 861ec9da..f343e4ef 100644
--- a/Graphics/GraphicsEngineD3D11/CMakeLists.txt
+++ b/Graphics/GraphicsEngineD3D11/CMakeLists.txt
@@ -148,7 +148,7 @@ set_source_files_properties(
readme.md PROPERTIES HEADER_FILE_ONLY TRUE
)
-if(INSTALL_DILIGENT_CORE)
+if(DILIGENT_INSTALL_CORE)
install_core_lib(Diligent-GraphicsEngineD3D11-shared)
install_core_lib(Diligent-GraphicsEngineD3D11-static)
endif() \ No newline at end of file
diff --git a/Graphics/GraphicsEngineD3D12/CMakeLists.txt b/Graphics/GraphicsEngineD3D12/CMakeLists.txt
index 63185a4f..db7e42ef 100644
--- a/Graphics/GraphicsEngineD3D12/CMakeLists.txt
+++ b/Graphics/GraphicsEngineD3D12/CMakeLists.txt
@@ -184,7 +184,7 @@ set_source_files_properties(
readme.md PROPERTIES HEADER_FILE_ONLY TRUE
)
-if(INSTALL_DILIGENT_CORE)
+if(DILIGENT_INSTALL_CORE)
install_core_lib(Diligent-GraphicsEngineD3D12-shared)
install_core_lib(Diligent-GraphicsEngineD3D12-static)
endif() \ No newline at end of file
diff --git a/Graphics/GraphicsEngineD3DBase/CMakeLists.txt b/Graphics/GraphicsEngineD3DBase/CMakeLists.txt
index 86e34ab2..5c61d0f9 100644
--- a/Graphics/GraphicsEngineD3DBase/CMakeLists.txt
+++ b/Graphics/GraphicsEngineD3DBase/CMakeLists.txt
@@ -86,6 +86,6 @@ set_target_properties(Diligent-ProcessHLSLDefinitions PROPERTIES
FOLDER DiligentCore/Graphics/Helper
)
-if(INSTALL_DILIGENT_CORE)
+if(DILIGENT_INSTALL_CORE)
install_core_lib(Diligent-GraphicsEngineD3DBase)
endif() \ No newline at end of file
diff --git a/Graphics/GraphicsEngineMetal/CMakeLists.txt b/Graphics/GraphicsEngineMetal/CMakeLists.txt
index 0d22aa25..fe73029b 100644
--- a/Graphics/GraphicsEngineMetal/CMakeLists.txt
+++ b/Graphics/GraphicsEngineMetal/CMakeLists.txt
@@ -136,7 +136,7 @@ set_source_files_properties(
readme.md PROPERTIES HEADER_FILE_ONLY TRUE
)
-if(INSTALL_DILIGENT_CORE)
+if(DILIGENT_INSTALL_CORE)
install_core_lib(Diligent-GraphicsEngineMetal-shared)
install_core_lib(Diligent-GraphicsEngineMetal-static)
endif()
diff --git a/Graphics/GraphicsEngineNextGenBase/CMakeLists.txt b/Graphics/GraphicsEngineNextGenBase/CMakeLists.txt
index abe53e19..21669229 100644
--- a/Graphics/GraphicsEngineNextGenBase/CMakeLists.txt
+++ b/Graphics/GraphicsEngineNextGenBase/CMakeLists.txt
@@ -36,6 +36,6 @@ set_target_properties(Diligent-GraphicsEngineNextGenBase PROPERTIES
FOLDER DiligentCore/Graphics
)
-if(INSTALL_DILIGENT_CORE)
+if(DILIGENT_INSTALL_CORE)
install_core_lib(Diligent-GraphicsEngineNextGenBase)
endif() \ No newline at end of file
diff --git a/Graphics/GraphicsEngineOpenGL/CMakeLists.txt b/Graphics/GraphicsEngineOpenGL/CMakeLists.txt
index 41760feb..1ea19441 100644
--- a/Graphics/GraphicsEngineOpenGL/CMakeLists.txt
+++ b/Graphics/GraphicsEngineOpenGL/CMakeLists.txt
@@ -245,7 +245,7 @@ set_source_files_properties(
readme.md PROPERTIES HEADER_FILE_ONLY TRUE
)
-if(INSTALL_DILIGENT_CORE)
+if(DILIGENT_INSTALL_CORE)
install_core_lib(Diligent-GraphicsEngineOpenGL-shared)
install_core_lib(Diligent-GraphicsEngineOpenGL-static)
endif()
diff --git a/Graphics/GraphicsEngineVulkan/CMakeLists.txt b/Graphics/GraphicsEngineVulkan/CMakeLists.txt
index 0ae87005..85c93332 100644
--- a/Graphics/GraphicsEngineVulkan/CMakeLists.txt
+++ b/Graphics/GraphicsEngineVulkan/CMakeLists.txt
@@ -293,7 +293,7 @@ set_target_properties(Diligent-ProcessGenerateMipsVkShader PROPERTIES
FOLDER DiligentCore/Graphics/Helper
)
-if(INSTALL_DILIGENT_CORE)
+if(DILIGENT_INSTALL_CORE)
install_core_lib(Diligent-GraphicsEngineVk-shared)
install_core_lib(Diligent-GraphicsEngineVk-static)
endif()
diff --git a/Graphics/GraphicsTools/CMakeLists.txt b/Graphics/GraphicsTools/CMakeLists.txt
index cf6d74ce..eebc2aa5 100644
--- a/Graphics/GraphicsTools/CMakeLists.txt
+++ b/Graphics/GraphicsTools/CMakeLists.txt
@@ -75,6 +75,6 @@ set_target_properties(Diligent-GraphicsTools PROPERTIES
FOLDER DiligentCore/Graphics
)
-if(INSTALL_DILIGENT_CORE)
+if(DILIGENT_INSTALL_CORE)
install_core_lib(Diligent-GraphicsTools)
endif() \ No newline at end of file
diff --git a/Graphics/HLSL2GLSLConverterLib/CMakeLists.txt b/Graphics/HLSL2GLSLConverterLib/CMakeLists.txt
index 2ab13759..90730324 100644
--- a/Graphics/HLSL2GLSLConverterLib/CMakeLists.txt
+++ b/Graphics/HLSL2GLSLConverterLib/CMakeLists.txt
@@ -77,6 +77,6 @@ set_target_properties(Diligent-HLSL2GLSLConverterLib PROPERTIES
FOLDER DiligentCore/Graphics
)
-if(INSTALL_DILIGENT_CORE)
+if(DILIGENT_INSTALL_CORE)
install_core_lib(Diligent-HLSL2GLSLConverterLib)
endif() \ No newline at end of file