summaryrefslogtreecommitdiffstats
path: root/Tests/TestApp/src
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/TestApp/src')
-rw-r--r--Tests/TestApp/src/CMakeLists.txt26
1 files changed, 13 insertions, 13 deletions
diff --git a/Tests/TestApp/src/CMakeLists.txt b/Tests/TestApp/src/CMakeLists.txt
index befa6fa..20fb0d0 100644
--- a/Tests/TestApp/src/CMakeLists.txt
+++ b/Tests/TestApp/src/CMakeLists.txt
@@ -85,30 +85,30 @@ endif()
if(PLATFORM_WIN32)
SET(ENGINE_LIBRARIES
- GraphicsEngineD3D11-shared
- GraphicsEngineD3D12-shared
- GraphicsEngineOpenGL-shared
+ Diligent-GraphicsEngineD3D11-shared
+ Diligent-GraphicsEngineD3D12-shared
+ Diligent-GraphicsEngineOpenGL-shared
)
elseif(PLATFORM_ANDROID)
SET(ENGINE_LIBRARIES
- GraphicsEngineOpenGL-shared
+ Diligent-GraphicsEngineOpenGL-shared
)
elseif(PLATFORM_UNIVERSAL_WINDOWS)
SET(ENGINE_LIBRARIES
- GraphicsEngineD3D11-static
- GraphicsEngineD3D12-static
+ Diligent-GraphicsEngineD3D11-static
+ Diligent-GraphicsEngineD3D12-static
)
elseif(PLATFORM_LINUX)
SET(ENGINE_LIBRARIES
- GraphicsEngineOpenGL-shared
+ Diligent-GraphicsEngineOpenGL-shared
)
elseif(PLATFORM_MACOS)
SET(ENGINE_LIBRARIES
- GraphicsEngineOpenGL-shared
+ Diligent-GraphicsEngineOpenGL-shared
)
elseif(PLATFORM_IOS)
SET(ENGINE_LIBRARIES
- GraphicsEngineOpenGL-static
+ Diligent-GraphicsEngineOpenGL-static
)
else()
message(FATAL_ERROR "Undefined platform")
@@ -116,12 +116,12 @@ endif()
target_link_libraries(TestApp
PRIVATE
- BuildSettings
+ Diligent-BuildSettings
PUBLIC
NativeAppBase
- Common
- GraphicsTools
- TargetPlatform
+ Diligent-Common
+ Diligent-GraphicsTools
+ Diligent-TargetPlatform
${ENGINE_LIBRARIES}
)