forked from qt-creator/qt-creator
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:
@@ -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");
|
||||
|
Reference in New Issue
Block a user