diff options
| author | Egor Yusov <egor.yusov@gmail.com> | 2019-06-09 20:45:50 +0000 |
|---|---|---|
| committer | Egor Yusov <egor.yusov@gmail.com> | 2019-06-09 20:45:50 +0000 |
| commit | 7231125e6fb1e541aab1d67db744d4c38a07b749 (patch) | |
| tree | 6a0442387fd53b99b1faf124a8e1aea4653e62e8 /Graphics/GraphicsEngine | |
| parent | Mathlib: fixed RotationArbitrary function (diff) | |
| download | DiligentCore-7231125e6fb1e541aab1d67db744d4c38a07b749.tar.gz DiligentCore-7231125e6fb1e541aab1d67db744d4c38a07b749.zip | |
Added 'Diligent-' prefix to project names to avoid name conflicts (https://github.com/DiligentGraphics/DiligentEngine/issues/20)
Diffstat (limited to 'Graphics/GraphicsEngine')
| -rw-r--r-- | Graphics/GraphicsEngine/CMakeLists.txt | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/Graphics/GraphicsEngine/CMakeLists.txt b/Graphics/GraphicsEngine/CMakeLists.txt index b7fbc23d..7744e323 100644 --- a/Graphics/GraphicsEngine/CMakeLists.txt +++ b/Graphics/GraphicsEngine/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required (VERSION 3.6) -project(GraphicsEngine CXX) +project(Diligent-GraphicsEngine CXX) set(INCLUDE include/BufferBase.h @@ -64,31 +64,31 @@ set(SOURCE src/Texture.cpp ) -add_library(GraphicsEngine STATIC ${SOURCE} ${INTERFACE} ${INCLUDE}) -set_common_target_properties(GraphicsEngine) +add_library(Diligent-GraphicsEngine STATIC ${SOURCE} ${INTERFACE} ${INCLUDE}) +set_common_target_properties(Diligent-GraphicsEngine) -target_include_directories(GraphicsEngine +target_include_directories(Diligent-GraphicsEngine PUBLIC include interface ) -target_link_libraries(GraphicsEngine +target_link_libraries(Diligent-GraphicsEngine PUBLIC - BuildSettings - PlatformInterface - Common - GraphicsAccessories + Diligent-BuildSettings + Diligent-PlatformInterface + Diligent-Common + Diligent-GraphicsAccessories ) source_group("src" FILES ${SOURCE}) source_group("include" FILES ${INCLUDE}) source_group("interface" FILES ${INTERFACE}) -set_target_properties(GraphicsEngine PROPERTIES - FOLDER Core/Graphics +set_target_properties(Diligent-GraphicsEngine PROPERTIES + FOLDER DiligentCore/Graphics ) if(INSTALL_DILIGENT_CORE) - install_core_lib(GraphicsEngine) + install_core_lib(Diligent-GraphicsEngine) endif()
\ No newline at end of file |
