QtCreator 的代码补全不适用于 Qt 库
尝试在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
选择以下文件之一
或
Qt_install 是指安装 Qt 的目录(不是 qt 创建者),例如 C:\Qt\Qt 4.7.4\我猜你的_compiler应该是mingw(没有安装Windows)。
在 .conf 文件中,添加包含您在 .pro 中添加的路径的行,如下所示:
mkspecs 文件隐式包含在您的所有 .pro 中,因此代码完成将在您的所有项目中工作。
Choose one of the following files
or
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:
The mkspecs files are implicitly included in all your .pro so code completion will work in all your projects.