更改在 Qt Creator 中查找和链接文件的方式

发布于 2024-12-01 02:24:27 字数 508 浏览 1 评论 0原文

我正在 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 技术交流群。

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

发布评论

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

评论(1

我不在是我 2024-12-08 02:24:27

使用 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.

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