summaryrefslogtreecommitdiffstats
path: root/unityplugin/GhostCubePlugin
diff options
context:
space:
mode:
authorEgor Yusov <egor.yusov@gmail.com>2019-06-09 21:08:31 +0000
committerEgor Yusov <egor.yusov@gmail.com>2019-06-09 21:08:31 +0000
commitf4dc48ccc69fc2f8564606e55f50bee3ee236af0 (patch)
tree209b2fb438498979aebaf669e065b31a46d81ade /unityplugin/GhostCubePlugin
parentUpdated samples (updated gradle build tools to 3.4.1) (diff)
downloadDiligentEngine-f4dc48ccc69fc2f8564606e55f50bee3ee236af0.tar.gz
DiligentEngine-f4dc48ccc69fc2f8564606e55f50bee3ee236af0.zip
Added 'Diligent-' prefix to project names to avoid name conflicts (fixed https://github.com/DiligentGraphics/DiligentEngine/issues/20)
Diffstat (limited to 'unityplugin/GhostCubePlugin')
-rw-r--r--unityplugin/GhostCubePlugin/PluginSource/CMakeLists.txt16
1 files changed, 8 insertions, 8 deletions
diff --git a/unityplugin/GhostCubePlugin/PluginSource/CMakeLists.txt b/unityplugin/GhostCubePlugin/PluginSource/CMakeLists.txt
index a340286..e9b8fa2 100644
--- a/unityplugin/GhostCubePlugin/PluginSource/CMakeLists.txt
+++ b/unityplugin/GhostCubePlugin/PluginSource/CMakeLists.txt
@@ -60,23 +60,23 @@ if(MSVC)
endif()
set(PRIVATE_DEPENDENCIES
- BuildSettings
- TargetPlatform
- Common
- GraphicsAccessories
- GraphicsTools
+ Diligent-BuildSettings
+ Diligent-TargetPlatform
+ Diligent-Common
+ Diligent-GraphicsAccessories
+ Diligent-GraphicsTools
)
if(D3D11_SUPPORTED)
- list(APPEND PRIVATE_DEPENDENCIES GraphicsEngineD3D11-static)
+ list(APPEND PRIVATE_DEPENDENCIES Diligent-GraphicsEngineD3D11-static)
endif()
if(D3D12_SUPPORTED)
- list(APPEND PRIVATE_DEPENDENCIES GraphicsEngineD3D12-static)
+ list(APPEND PRIVATE_DEPENDENCIES Diligent-GraphicsEngineD3D12-static)
endif()
if(GL_SUPPORTED OR GLES_SUPPORTED)
- list(APPEND PRIVATE_DEPENDENCIES GraphicsEngineOpenGL-static)
+ list(APPEND PRIVATE_DEPENDENCIES Diligent-GraphicsEngineOpenGL-static)
endif()
target_link_libraries(GhostCubePlugin-shared PRIVATE ${PRIVATE_DEPENDENCIES})