有没有办法向 Qt Creator 添加全局适用于所有项目的包含路径?

发布于 2024-11-01 23:12:32 字数 199 浏览 1 评论 0原文

我需要 Qt Creator 来存储一些适用于所有项目的全局包含路径。目前有什么办法可以做到这一点吗?

我尝试这样做的原因是因为在 Windows 上,包含文件没有标准位置 - 因此添加包含路径的唯一方法是指定 .pro 文件。当 .pro 文件被签入版本控制时,这将成为一场噩梦。

有更好的办法吗?

I need Qt Creator to store some global include paths that will apply to all projects. Is there currently any way to do this?

The reason I am trying to do this is because on Windows, there is no standard location for include files - so the only way to add an include path is to specify the absolute path to the folder in the .pro file. This becomes a nightmare when the .pro file is checked into version control.

Is there a better way?

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

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

发布评论

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

评论(2

多像笑话 2024-11-08 23:12:32

您可以设置CPATH &朋友环境变量,因此 mingw 将使用它们来搜索包含文件:

http: //gcc.gnu.org/onlinedocs/cpp/Environment-Variables.html#Environment-Variables

You can set CPATH & friends environment variables so mingw will use them to search include files:

http://gcc.gnu.org/onlinedocs/cpp/Environment-Variables.html#Environment-Variables

压抑⊿情绪 2024-11-08 23:12:32

我不确定这有多“推荐”,但您可以将 INCLUDEPATH += 添加到 \qt\ 中的 qmake.conf mkspecs\默认

I'm not sure how "recommended" this is but you can add an INCLUDEPATH += to qmake.conf in <qt install directory>\qt\mkspecs\default

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