summaryrefslogtreecommitdiffstats
path: root/unityplugin/UnityEmulator
diff options
context:
space:
mode:
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)