From 3a9ce469281321399764da193661dff69deb00c1 Mon Sep 17 00:00:00 2001 From: Christian Stenger Date: Tue, 1 Feb 2022 12:16:19 +0100 Subject: [PATCH] Simple test app: Fix location The location had been correct with qmake, but is wrong with qbs and cmake. Change-Id: I967f6db60e084dbc98548d61bb6eddbac4f7be24 Reviewed-by: Christian Kandeler --- tests/manual/debugger/simple/simple_test_app.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/manual/debugger/simple/simple_test_app.cpp b/tests/manual/debugger/simple/simple_test_app.cpp index 15ed0174182..072345c3fcf 100644 --- a/tests/manual/debugger/simple/simple_test_app.cpp +++ b/tests/manual/debugger/simple/simple_test_app.cpp @@ -2201,7 +2201,7 @@ namespace plugin { QLibrary lib(dir + "/libsimple_test_plugin.dylib"); #endif #ifdef Q_OS_WIN - QLibrary lib(dir + "/debug/simple_test_plugin.dll"); + QLibrary lib(dir + "/simple_test_plugin.dll"); #endif BREAK_HERE; // CheckType dir QString.