QtCreator 的代码补全不适用于 Qt 库

发布于 2024-11-27 15:43:32 字数 573 浏览 0 评论 0原文

尝试在 QtCreator 中工作时,Qt 库的代码完成存在问题。 QtCreator 说它找不到 Qt 标头,因此无法完成它们的代码。即,如果我写 #include#include 则该行会带有下划线,并显示消息 No such file or directory

但尽管如此,编译过程仍然可以完美地工作。因此,qmake 发现一切正确,问题出在 QtCreator 中。此外,代码完成通常适用于所有自己的文件(为项目创建)。

我们尝试了许多修复方法,包括重新安装 Qt 两次、尝试使用 QtCreator 目录中的 qt.conf 进行破坏、尝试查找 qmake.cache、搜索注册表并进行大量 Google 搜索。 。我们在 Windows Vista 下使用 QtSdk 1.1 和捆绑的 QtCreator 2.2.1,安装在默认位置。

有一个脏的解决方案可以在 .pro 文件中写入路径,但我们不想使用它。

When trying to work in QtCreator, there is a problem with code completion for Qt libs. QtCreator says that it can't find Qt headers, so no code completion for them. I.e. if I write #include <QPainter> or #include <QtGui/QPainter> this line gets underlined with message No such file or directory.

But nevertheless compilation process works flawlessly. So, qmake finds everything correctly and the problem is in the QtCreator. Also, code completion works normally for all own files (created for project).

We've tried numerous fixes including reinstalling Qt twice, trying to mangle with qt.conf in QtCreator's dir, tried to find qmake.cache, searching the registry and googled a lot. We're using QtSdk 1.1 with bundled QtCreator 2.2.1 under Windows Vista, installed in the default location.

There is dirty solution to write path in .pro file, but we don't want to use it.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

森罗 2024-12-04 15:43:33

选择以下文件之一

Qt_install/mkspecs/common/your_os.conf

Qt_install/mkspecs/common/your_compiler.conf

Qt_install 是指安装 Qt 的目录(不是 qt 创建者),例如 C:\Qt\Qt 4.7.4\我猜你的_compiler应该是mingw(没有安装Windows)。

在 .conf 文件中,添加包含您在 .pro 中添加的路径的行,如下所示:

INCLUDEPATH += 路径1 路径2 ...

mkspecs 文件隐式包含在您的所有 .pro 中,因此代码完成将在您的所有项目中工作。

Choose one of the following files

Qt_install/mkspecs/common/your_os.conf

or

Qt_install/mkspecs/common/your_compiler.conf

By Qt_install I mean the directory where Qt is installed (not qt creator), e.g. C:\Qt\Qt 4.7.4\ and your_compiler should be mingw I guess (don't have a windows install).

In the .conf file, add the line with the path you added in your .pro, something like:

INCLUDEPATH += path1 path2 ...

The mkspecs files are implicitly included in all your .pro so code completion will work in all your projects.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文