编译环境的不同导致的问题,定位到
#ifdef QT_BOOTSTRAPPED
#include <QtCore/qconfig-bootstrapped.h>
#else
#include <QtCore/qconfig.h>
#include <QtCore/qtcore-config.h>
#endif
那么可以尝试定义宏 QT_BOOTSTRAPPED
方法1.在pch.h 或 stdafx.h
#ifndef PCH_H
#define PCH_H
// 添加要在此处预编译的标头
#include "framework.h"
#define QT_BOOTSTRAPPED
#endif //PCH_H
方法2.在 c/c++ --> 预处理器--》预处理器定义