summaryrefslogtreecommitdiffstats
path: root/unityplugin/UnityEmulator
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/UnityEmulator
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/UnityEmulator')
-rw-r--r--unityplugin/UnityEmulator/CMakeLists.txt16
1 files changed, 8 insertions, 8 deletions
diff --git a/unityplugin/UnityEmulator/CMakeLists.txt b/unityplugin/UnityEmulator/CMakeLists.txt
index 9fe7ca2..6a091a7 100644
--- a/unityplugin/UnityEmulator/CMakeLists.txt
+++ b/unityplugin/UnityEmulator/CMakeLists.txt
@@ -133,13 +133,13 @@ endif()
target_link_libraries(UnityEmulator
PRIVATE
- BuildSettings
+ Diligent-BuildSettings
PUBLIC
NativeAppBase
- Common
- GraphicsEngine
- GraphicsTools
- TargetPlatform
+ Diligent-Common
+ Diligent-GraphicsEngine
+ Diligent-GraphicsTools
+ Diligent-TargetPlatform
)
if(GL_SUPPORTED)
@@ -147,15 +147,15 @@ if(GL_SUPPORTED)
endif()
if(GL_SUPPORTED OR GLES_SUPPORTED)
- target_link_libraries(UnityEmulator PUBLIC GraphicsEngineOpenGL-static)
+ target_link_libraries(UnityEmulator PUBLIC Diligent-GraphicsEngineOpenGL-static)
endif()
if(D3D11_SUPPORTED)
- target_link_libraries(UnityEmulator PUBLIC GraphicsEngineD3DBase GraphicsEngineD3D11-static)
+ target_link_libraries(UnityEmulator PUBLIC Diligent-GraphicsEngineD3DBase Diligent-GraphicsEngineD3D11-static)
endif()
if(D3D12_SUPPORTED)
- target_link_libraries(UnityEmulator PUBLIC GraphicsEngineD3DBase GraphicsEngineD3D12-static)
+ target_link_libraries(UnityEmulator PUBLIC Diligent-GraphicsEngineD3DBase Diligent-GraphicsEngineD3D12-static)
endif()
if(PLATFORM_UNIVERSAL_WINDOWS)