diff options
| author | Egor Yusov <egor.yusov@gmail.com> | 2018-12-17 16:44:59 +0000 |
|---|---|---|
| committer | Egor Yusov <egor.yusov@gmail.com> | 2018-12-17 16:44:59 +0000 |
| commit | 98fb9172eb01179eba857e950633b502f2c87d7e (patch) | |
| tree | 73561471386791afdf7a6f6750601697a05ed21b /Graphics/HLSL2GLSLConverterLib | |
| parent | Fixed cmake install commands (diff) | |
| download | DiligentCore-98fb9172eb01179eba857e950633b502f2c87d7e.tar.gz DiligentCore-98fb9172eb01179eba857e950633b502f2c87d7e.zip | |
Made engine core installation optional that is on by default on Win32 and Linux only
Diffstat (limited to 'Graphics/HLSL2GLSLConverterLib')
| -rw-r--r-- | Graphics/HLSL2GLSLConverterLib/CMakeLists.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Graphics/HLSL2GLSLConverterLib/CMakeLists.txt b/Graphics/HLSL2GLSLConverterLib/CMakeLists.txt index 459764d9..c13f1be7 100644 --- a/Graphics/HLSL2GLSLConverterLib/CMakeLists.txt +++ b/Graphics/HLSL2GLSLConverterLib/CMakeLists.txt @@ -77,4 +77,6 @@ set_target_properties(HLSL2GLSLConverterLib PROPERTIES FOLDER Core/Graphics ) -install_core_lib(HLSL2GLSLConverterLib)
\ No newline at end of file +if(INSTALL_DILIGENT_CORE) + install_core_lib(HLSL2GLSLConverterLib) +endif()
\ No newline at end of file |
