From 98fb9172eb01179eba857e950633b502f2c87d7e Mon Sep 17 00:00:00 2001 From: Egor Yusov Date: Mon, 17 Dec 2018 08:44:59 -0800 Subject: Made engine core installation optional that is on by default on Win32 and Linux only --- Graphics/GraphicsEngineVulkan/CMakeLists.txt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'Graphics/GraphicsEngineVulkan') diff --git a/Graphics/GraphicsEngineVulkan/CMakeLists.txt b/Graphics/GraphicsEngineVulkan/CMakeLists.txt index c55bf217..6bb043f5 100644 --- a/Graphics/GraphicsEngineVulkan/CMakeLists.txt +++ b/Graphics/GraphicsEngineVulkan/CMakeLists.txt @@ -257,5 +257,7 @@ set_target_properties(ProcessGenerateMipsVkShader PROPERTIES FOLDER Core/Graphics/Helper ) -install_core_lib(GraphicsEngineVk-shared) -install_core_lib(GraphicsEngineVk-static) +if(INSTALL_DILIGENT_CORE) + install_core_lib(GraphicsEngineVk-shared) + install_core_lib(GraphicsEngineVk-static) +endif() \ No newline at end of file -- cgit v1.2.3