无法找到带有开源库的文件(在VS2005中)、斜杠和反斜杠

发布于 2024-10-20 06:11:08 字数 218 浏览 0 评论 0原文

我尝试包含一个开源库,例如 log4cpp,但我面临包含问题。 VS2005无法打开引用如下的文件: !
但我尝试用反斜杠替换斜杠,例如:“log4cplus\config.hxx”并成功运行。
所以这肯定和VS项目设置有关。有谁知道我必须在项目中更改什么选项,因为我不想修改包含此库?
TIA

I try to include an opensource library for instance log4cpp but i am facing to an include problem. VS2005 cannot open files quoted like:
<log4cplus/config.hxx> !
But I've tried to replace the slashes with backslashed like: "log4cplus\config.hxx" and successfully it works.
So this is certainly releated to VS project settings. Does anyone knows what option I have to change in the project as I don't want to modify the includes this library?
TIA

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

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

发布评论

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

评论(1

送君千里 2024-10-27 06:11:08

您必须将 log4cplus 的父目录添加到 C++ 项目的 Additional Include Directoryies 属性中。

/I 编译器选项的文档解释了如何做到这一点。

You have to add the parent directory of log4cplus to the Additional Include Directories property of your C++ project.

The documentation for the /I compiler option explains how to do that.

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