Shootout: Fix compile with Qt6 on Windows

Change-Id: I817eb9b02b09db76a2bebbc5f28388be96a4c54f
Reviewed-by: hjk <hjk@qt.io>
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
This commit is contained in:
Christian Stenger
2022-02-11 16:38:37 +01:00
parent c2cd524cdb
commit 900cd206c8

View File

@@ -254,9 +254,9 @@ void tst_CodeSize::codesize()
<< "\nExtra CXX Flags: " << c.extraCxxFlags.data();
#ifdef Q_OS_WIN
# ifdef Q_CC_MSVC
QString arguments = "release\\" + c.file + ".obj";
QString arguments = QString("release\\" + c.file + ".obj");
# else
QString arguments = "release\\" + c.file + ".o";
QString arguments = QString("release\\" + c.file + ".o");
# endif
#else
QString arguments = QString(c.file + ".o");