From caed14b22dffe337f55c01ff1460fde07841b82b Mon Sep 17 00:00:00 2001 From: Eike Ziller Date: Thu, 30 Jun 2022 15:26:47 +0200 Subject: [PATCH] Fix pluginspec test for Windows release builds Used a wrong name for the plugin library Change-Id: Ic1cff07387b660a641c2f43bfb913bd8b8668c5c Reviewed-by: Christian Stenger --- tests/auto/extensionsystem/pluginspec/testplugin/CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/auto/extensionsystem/pluginspec/testplugin/CMakeLists.txt b/tests/auto/extensionsystem/pluginspec/testplugin/CMakeLists.txt index a77550fa468..bd701ac2433 100644 --- a/tests/auto/extensionsystem/pluginspec/testplugin/CMakeLists.txt +++ b/tests/auto/extensionsystem/pluginspec/testplugin/CMakeLists.txt @@ -4,7 +4,7 @@ if(APPLE) elseif(UNIX) set(plugin_output_name "libtest") else() - set(plugin_output_name "testd") + set(plugin_output_name "test$<$:d>") endif() file(RELATIVE_PATH TEST_PLUGIN_PATH ${QtCreator_BINARY_DIR} ${CMAKE_CURRENT_BINARY_DIR})