gpt4 book ai didi

c++ - 在 Mac 上找不到 Qt 库

转载 作者:行者123 更新时间:2023-11-30 04:07:54 29 4
gpt4 key购买 nike

我在 Mac 10.9.1 上设置 Qt 环境时遇到问题。如果我只是尝试用标准编译 C++ 文件

 g++ source.cpp -o output 
Then none of the Qt Libraries are found. For instance if I have

#include <QString>

然后我会得到错误

fatal error: 'QString' file not found

我已经安装了 Qt 5.2.1 并将其添加到我的 PATH 变量中,所以现在当我使用

qmake -project, qmake -spec macx-g++ and then make
创建项目时

我收到一条错误消息,指出我的 Mac OSX 版本不受支持。我必须使用 Qt 完成我的大学作业,请有人帮我设置一下。

如有任何帮助,我们将不胜感激。

最佳答案

Qt 5 肯定支持 Mavericks。Qt 4 目前还不支持它; trojanfoe 在他的评论 ( nomen est omen? ) 中打错了字。

您的错误是使用了错误的制造规范。 Qt 5 使用 clang,而不是 gcc。因此,以下对我有用(无需设置任何路径):

~/Qt5.2.1/5.2.1/clang_64/bin/qmake -project
~/Qt5.2.1/5.2.1/clang_64/bin/qmake -spec macx-clang
make

您可以同时拥有多个 Qt 版本,安装新的 Qt 版本时没有理由卸载任何东西。

下面是一个独立的小例子。将其放在 simple 文件夹中。要构建,请执行以下操作:

~/Qt5.2.1/5.2.1/clang_64/bin/qmake -spec macx-clang
make

您不想通过使用 -project 参数调用 qmake 来重新生成 .pro 文件。项目生成只是给你一个简单的骨架,你只应该在导入第三方代码时方便地使用它。

请注意,根据定义,如果您使用任何可见的 GUI 元素(窗口、消息框等),就 Qt 而言,它不再是控制台应用程序。

# simple.pro
TEMPLATE = app
QT += widgets
# Creates a simple executable instead of an app bundle
CONFIG -= app_bundle
SOURCES += main.cpp
// main.cpp
#include <QApplication>
#include <QMessageBox>

int main(int argc, char ** argv)
{
// It is an error not to have an instance of QApplication.
// This implies that having an instance of QCoreApplication and QGuiApplication
// is also an error.
QApplication app(argc, argv);
QMessageBox::information(NULL, "Get This!", "Something's going on");
}

关于c++ - 在 Mac 上找不到 Qt 库,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22146061/

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