summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@qt.io>2022-06-30 15:26:47 +0200
committerEike Ziller <eike.ziller@qt.io>2022-07-01 11:34:56 +0000
commitcaed14b22dffe337f55c01ff1460fde07841b82b (patch)
treebe21b9e486b1e581033fb58da9ce2a223dd324f3 /tests
parent93ed9157b1d91de53ef76ecf58bfd96b8e466f8f (diff)
downloadqt-creator-caed14b22dffe337f55c01ff1460fde07841b82b.tar.gz
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>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/extensionsystem/pluginspec/testplugin/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/extensionsystem/pluginspec/testplugin/CMakeLists.txt b/tests/auto/extensionsystem/pluginspec/testplugin/CMakeLists.txt
index a77550fa46..bd701ac243 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$<$<CONFIG:Debug>:d>")
endif()
file(RELATIVE_PATH TEST_PLUGIN_PATH ${QtCreator_BINARY_DIR} ${CMAKE_CURRENT_BINARY_DIR})