有没有办法向 Qt Creator 添加全局适用于所有项目的包含路径?
我需要 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以设置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
我不确定这有多“推荐”,但您可以将\qt\ 中的
INCLUDEPATH +=
添加到qmake.conf
mkspecs\默认I'm not sure how "recommended" this is but you can add an
INCLUDEPATH +=
toqmake.conf
in<qt install directory>\qt\mkspecs\default