如何解决"Qt: Untested Windows version 10.0 detected!"

How solve "Qt: Untested Windows version 10.0 detected!"

我正在尝试将 cmake 用于一个 有很多依赖性 的项目。 我在一周前从 Windows 7 开始更新到 Windows 10,现在我得到这个错误。

考虑到我不会降级到 Windows 7,我该如何解决这个问题?

感谢大家

我认为您使用的是 Windows 8 之前发布的 Qt 版本。可能是 Qt 4.8.x。要暂停警告,您需要更新 Qt 版本或忽略该警告。

更新

如果警告信息真的很麻烦,您可以尝试通过以下方式过滤掉它:

 #include <qapplication.h>
 #include <stdio.h>
 #include <stdlib.h>

 void myMessageOutput(QtMsgType type, const char *msg)
 {
     switch (type) {
     case QtDebugMsg:
         fprintf(stderr, "Debug: %s\n", msg);
         break;
     case QtWarningMsg:
         if (strstr(msg, "Qt: Untested Windows version") == 0) {
             // Print warning if it is not "Qt: Untested Windows..."
             fprintf(stderr, "Warning: %s\n", msg);
         }
         break;
     case QtCriticalMsg:
         fprintf(stderr, "Critical: %s\n", msg);
         break;
     case QtFatalMsg:
         fprintf(stderr, "Fatal: %s\n", msg);
         abort();
     }
 }

 int main(int argc, char **argv)
 {
     qInstallMsgHandler(myMessageOutput);
     QApplication app(argc, argv);
     ...
     return app.exec();
 }