gpt4 book ai didi

c++ - 如何在 Mac OS 的命令行中编译 Qt 代码

转载 作者:搜寻专家 更新时间:2023-10-31 00:03:49 26 4
gpt4 key购买 nike

我下载这个:http://get.qt.nokia.com/qt/source/qt-mac-opensource-4.7.2.dmg并安装它。然后我得到了一个 Qt helloworld.cc。

 #include <QApplication>
#include <QPushButton>

int main(int argc, char *argv[])
{
QApplication app(argc, argv);

QPushButton hello("Hello world!");
hello.resize(100, 30);

hello.show();
return app.exec();
}

我试图编译它但失败了。 "

‘QApplication’ was not declared in this scope "

我该如何解决?

最佳答案

你也可以这样做(希望我没记错):

$ qmake -project
$ qmake
$ make

当然你应该 cd 到你的源文件。另外,我认为在使用 Qt 时坚持 *.cpp 文件命名是个好主意

关于c++ - 如何在 Mac OS 的命令行中编译 Qt 代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5280952/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com