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 <christian.kandeler@qt.io>
This commit is contained in:
Christian Stenger
2022-02-01 12:16:19 +01:00
parent c8b2e4fe1e
commit 3a9ce46928

View File

@@ -2201,7 +2201,7 @@ namespace plugin {
QLibrary lib(dir + "/libsimple_test_plugin.dylib"); QLibrary lib(dir + "/libsimple_test_plugin.dylib");
#endif #endif
#ifdef Q_OS_WIN #ifdef Q_OS_WIN
QLibrary lib(dir + "/debug/simple_test_plugin.dll"); QLibrary lib(dir + "/simple_test_plugin.dll");
#endif #endif
BREAK_HERE; BREAK_HERE;
// CheckType dir QString. // CheckType dir QString.