更改在 Qt Creator 中查找和链接文件的方式
我正在 Qt Creator 中创建一个应用程序,并且链接到 svn 上的大框架中的文件,为此我有该 svn 的本地副本。我遇到的问题是,例如 svn 上的头文件有:
include“files/source/db/extract.h”,
而在我的本地计算机中则为:#include“home/user/sv/files/source /db/extract.h”
因此我收到错误“extract.h 没有这样的文件”。
我能够包含所有在 Qt Creator 中更改 .pro 文件的文件,执行 INCLUDEPATH =
但所有这些文件都是只读的,我无法更改这些文件中的任何一个以指向我在库中拥有其他源的本地副本的位置。
Qt Creator 中是否有一种方法可以执行类似的操作:
/files/source/db = /home/user/sv/files/source/db 以便每次包含文件时都可以通过这种方式找到我本地的副本?
我很感激任何帮助。
谢谢。
I have an application I am creating in Qt Creator and I am linking to files in a big framework on an svn, and for this I have a local copy of that svn. The problem I am having is that for example a header file on the svn has:
include "files/source/db/extract.h"
and this in my local computer would be: #include "home/user/sv/files/source/db/extract.h"
Therefore I get the error "extract.h no such file".
I am able to include all the files changing the .pro file in Qt Creator doing INCLUDEPATH =
But all these files are read only and I cant change any of these files to point to where I have a local copy of other sources in the library.
Is there a way in Qt Creator where I can do something like:
/files/source/db = /home/user/sv/files/source/db so that everytime a file is included this way it can find the copy I have locally ?
I appreciate any help.
thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 INCLUDEPATH += /path/to/your/location /path/to/global/location ,在检查 global/location 之前,将选取 your/location 中的文件(如果存在)。
Use INCLUDEPATH += /path/to/your/location /path/to/global/location, and the files in your/location will be picked up if they exist, befor global/location is examined.