QT创建者的错误

Error with QT Creator

本文关键字:错误 创建者 QT      更新时间:2023-10-16

你好,我正在与QT Creator一起构建错误,我想知道有人知道为什么会犯这些错误。谢谢

main.cpp:

#include <QApplication>
#include <QGraphicsScene>
#include <QGraphicsRectItem>
#include <QGraphicsView>

int main(int argc, char *argv[]){
    QApplication a(argc, argv);
    //Create Scene
    QGraphicsScene * scene = new QGraphicsScene();
    //Creat Item To Put Into Scene
    QGraphicsRectItem * rect = new QGraphicsRectItem();
    rect->setRect(100, 50, 100, 100);
    //Add Item To Scene aka buffer
    scene->addItem(rect);
    //add a view
    QGraphicsView * view = new QGraphicsView(scene);
    view->show();
    return a.exec();
}

mygame.pro:

#-------------------------------------------------
#
# Project created by QtCreator 2017-05-03T12:14:31
#
#-------------------------------------------------
QT       += core gui
greaterThan(QT_MAJOR_VERSION, 4): QT += widgets
TARGET = mygame
TEMPLATE = app
# The following define makes your compiler emit warnings if you use
# any feature of Qt which as been marked as deprecated (the exact warnings
# depend on your compiler). Please consult the documentation of the
# deprecated API in order to know how to port your code away from it.
DEFINES += QT_DEPRECATED_WARNINGS
# You can also make your code fail to compile if you use deprecated APIs.
# In order to do so, uncomment the following line.
# You can also select to disable deprecated APIs only up to a certain version of Qt.
#DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x060000    # disables all the APIs deprecated before Qt 6.0.0

SOURCES += main.cpp
HEADERS  +=

编译输出:

Error while building/deploying project mygame (kit: Desktop Qt 5.8.0 MSVC2015_64bit)
When executing step "qmake"

我不确定是什么犯了这些错误(单词和更多单词以获取更多细节,因此"看起来您的帖子需要更多细节"会消失...它不会消失,所以我将继续键入直到它选择这样做,但看起来它不会很快到达任何时间。我们走了(。

查看"编译输出"选项卡。如果需要

修复奇异QMAKE错误的另一种有用方法是在QT Creator中获得新的项目设置。

关闭QT创建者,删除.pro.user文件,然后在您的项目中重新打开QT创建者。这将迫使您使用QT版本的调试/发布等重新配置您的项目。

希望会有所帮助。