Fix pluginspec test for Windows release builds

Used a wrong name for the plugin library

Change-Id: Ic1cff07387b660a641c2f43bfb913bd8b8668c5c
Reviewed-by: Christian Stenger <christian.stenger@qt.io>
This commit is contained in:
Eike Ziller
2022-06-30 15:26:47 +02:00
parent 93ed9157b1
commit caed14b22d

View File

@@ -4,7 +4,7 @@ if(APPLE)
elseif(UNIX)
set(plugin_output_name "libtest")
else()
set(plugin_output_name "testd")
set(plugin_output_name "test$<$<CONFIG:Debug>:d>")
endif()
file(RELATIVE_PATH TEST_PLUGIN_PATH ${QtCreator_BINARY_DIR} ${CMAKE_CURRENT_BINARY_DIR})