summaryrefslogtreecommitdiffstats
path: root/Graphics/GraphicsEngineNextGenBase
diff options
context:
space:
mode:
authorEgor Yusov <egor.yusov@gmail.com>2019-06-09 20:45:50 +0000
committerEgor Yusov <egor.yusov@gmail.com>2019-06-09 20:45:50 +0000
commit7231125e6fb1e541aab1d67db744d4c38a07b749 (patch)
tree6a0442387fd53b99b1faf124a8e1aea4653e62e8 /Graphics/GraphicsEngineNextGenBase
parentMathlib: fixed RotationArbitrary function (diff)
downloadDiligentCore-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/GraphicsEngineNextGenBase')
-rw-r--r--Graphics/GraphicsEngineNextGenBase/CMakeLists.txt26
1 files changed, 13 insertions, 13 deletions
diff --git a/Graphics/GraphicsEngineNextGenBase/CMakeLists.txt b/Graphics/GraphicsEngineNextGenBase/CMakeLists.txt
index 428581c5..abe53e19 100644
--- a/Graphics/GraphicsEngineNextGenBase/CMakeLists.txt
+++ b/Graphics/GraphicsEngineNextGenBase/CMakeLists.txt
@@ -1,6 +1,6 @@
cmake_minimum_required (VERSION 3.6)
-project(GraphicsEngineNextGenBase CXX)
+project(Diligent-GraphicsEngineNextGenBase CXX)
set(INCLUDE
include/DeviceContextNextGenBase.h
@@ -12,30 +12,30 @@ set(SOURCE
src/dummy.cpp
)
-add_library(GraphicsEngineNextGenBase STATIC ${SOURCE} ${INCLUDE})
-set_common_target_properties(GraphicsEngineNextGenBase)
+add_library(Diligent-GraphicsEngineNextGenBase STATIC ${SOURCE} ${INCLUDE})
+set_common_target_properties(Diligent-GraphicsEngineNextGenBase)
-target_include_directories(GraphicsEngineNextGenBase
+target_include_directories(Diligent-GraphicsEngineNextGenBase
PUBLIC
include
)
-target_link_libraries(GraphicsEngineNextGenBase
+target_link_libraries(Diligent-GraphicsEngineNextGenBase
PUBLIC
- BuildSettings
- PlatformInterface
- Common
- GraphicsAccessories
- GraphicsEngine
+ Diligent-BuildSettings
+ Diligent-PlatformInterface
+ Diligent-Common
+ Diligent-GraphicsAccessories
+ Diligent-GraphicsEngine
)
source_group("src" FILES ${SOURCE})
source_group("include" FILES ${INCLUDE})
-set_target_properties(GraphicsEngineNextGenBase PROPERTIES
- FOLDER Core/Graphics
+set_target_properties(Diligent-GraphicsEngineNextGenBase PROPERTIES
+ FOLDER DiligentCore/Graphics
)
if(INSTALL_DILIGENT_CORE)
- install_core_lib(GraphicsEngineNextGenBase)
+ install_core_lib(Diligent-GraphicsEngineNextGenBase)
endif() \ No newline at end of file