QT中提示AppxManifest.xml不存在如何解决
程序员文章站
2022-03-23 15:41:25
#include#include //窗口控件基类int main(int argc, char **argv){ QApplication app(argc, argv); QWidget w; w.setWindowTitle(QString("主要看气质")); //设置标题 w.show(); app.exec(); return 0;}用QT写程序提示:qt....
#include<QApplication>
#include<QWidget> //窗口控件基类
int main(int argc, char **argv)
{
QApplication app(argc, argv);
QWidget w;
w.setWindowTitle(QString("主要看气质")); //设置标题
w.show();
app.exec();
return 0;
}
用QT写程序提示:
qt.winrtrunner: “J:/QTcode/day01/build-02_HelloQT-Qt_5_9_0_for_UWP_64bit_MSVC_2017-Debug/debug/AppxManifest.xml” does not exist.
qt.winrtrunner: Unable to find a run profile for “J:/QTcode/day01/build-02_HelloQT-Qt_5_9_0_for_UWP_64bit_MSVC_2017-Debug/debug/02_HelloQT.exe” .
请问是什么原因,如何解决
本文地址:https://blog.csdn.net/qq_42964728/article/details/107890253
上一篇: Qt 小画板