如何解决" Qt:检测到未经测试的Windows版本10.0"

时间:2015-10-06 09:22:00

标签: qt windows-10 qmake

我尝试将 cmake 用于具有大量依赖关系的项目。 一周前我从Windows 7开始更新为 Windows 10 ,现在我收到此错误。

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

感谢所有

1 个答案:

答案 0 :(得分:3)

我认为您使用的是在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();
 }