4

Qt3D 已被 Qt 5.5 正式支持。他们说支持Linux

我选择了一个assimp 示例,它的main.cpp包含 window.h。

我在 Ubuntu 14.04.3 上。我应该如何编译这个程序?

No such file or directory是我收到的错误。

我在 QtCreator 中的输出截图

4

1 回答 1

7

window.h文件应该位于Qt\Examples\Qt-5.5\qt3d\common文件夹中,它与 Windows 无关,仅与QWindow.

更多详细信息:https ://forum.qt.io/topic/56554/qt-5-5-qt3d-window-h-file-in-the-examples

如果在您的项目中找不到此路径,您可以将其添加到 .pro 文件中:

INCLUDEPATH += "Qt/Examples/Qt-5.5/qt3d/common"

在此处阅读有关在 Qt Creator 中正确使用包含路径的更多信息:如何在 Qt Creator 中添加包含路径?

于 2015-11-17T10:43:24.060 回答