0

我使用本官方指南中提供的说明在 OSX Lion 上编译了 Qt 。然后我尝试编译以下Hello Worldgcc hello_world.cpp -o hello_world

#include <QApplication>

int main(int argc, char **argv)
{
    QApplication app (argc, argv);
    return app.exec();
}

我有以下错误:

hello_world.cpp:1:10: fatal error: 'QApplication' file not found
#include <QApplication>
         ^
1 error generated.
4

5 回答 5

3

试试吧#include <QtGui/QApplication>

于 2013-09-05T08:07:36.647 回答
3

使用 gcc 的 -I 选项提供额外的包含位置。

gcc hello_world.cpp -I/path-to-qt/include -o hello_world

如果你这样使用它,你必须像这样使用你的包含:

#include <QtGui/QApplication>

如果你希望你的包含更短#include <QApplication>,你可以像这样提供多个包含文件夹:

gcc hello_world.cpp -I/path-to-qt/include/QtCore -I/path-to-qt/include/QtGui -o hello_world

但这还不是全部。您还必须提供库目录以及要链接到哪些库,方法如下:

gcc hello_world.cpp -I/path-to-qt/include/QtCore -I/path-to-qt/include/QtGui -o hello_world -L/path-to-qt/lib -lQtCore -lQtGui

使用 g++ 也更好,因为您使用的是 C++。

g++ hello_world.cpp -I/path-to-qt/include/QtCore -I/path-to-qt/include/QtGui -o hello_world -L/path-to-qt/lib -lQtCore -lQtGui
于 2013-09-05T08:07:41.110 回答
2

尝试使用g++ -I<path_to_include_directory> -L<path_to_library_dir> -lQtCore.

例如,在我的 Debian 中,我会这样做:g++ -I/usr/local/include/Qt4 -L/usr/local/lib -lQtCore -lQtGui whatever.cpp

编辑:感谢@erelender 指出它QApplicationQtGui库中并且依赖于QtCore.

于 2013-09-05T08:04:44.223 回答
1

不确定mac中的路径,但在Linux上,QApplication类定义在以下位置(qt4)

/usr/include/qt4/QtGui/qwindowdefs.h

你在Mac上有类似的东西吗?

如果您是从命令行构建的,则可以使用以下开关来包含带有 gcc 的头文件

-I<path to .h file>
于 2013-09-05T07:53:24.410 回答
1

如果您尝试使用 -I 标志为 gcc 添加额外的包含路径怎么办?就像是:

gcc -I/usr/local/Qt-5.1.1/include hello_world.cpp -o hello_world
于 2013-09-05T08:02:15.473 回答