为 VS10 添加额外的包含目录

发布于 2024-11-08 05:41:02 字数 270 浏览 4 评论 0原文

我在弄清楚如何为单个项目添加另一个目录时遇到了一些麻烦。在常规 C/C++ 项目中,我可以选择导航到目录,但在这里我必须自己输入目录,但这是一个 CUDA c/C++ 项目。我的问题是如何添加:C:\Users\USERNAME\Documents\Visual Studio 2010\Projects\CUDA Programs\common 作为包含目录。

我的项目的屏幕截图

I'm having some trouble figuring out how to add another directory for a single project. On a regular C/C++ project I'm allowed the option of navigating to the directory, but here I have to enter the directory myself, but this is a CUDA c/C++ project. My question is how would I add lets just say: C:\Users\USERNAME\Documents\Visual Studio 2010\Projects\CUDA Programs\common as an include directory.

A screen grab of my project

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

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

发布评论

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

评论(2

溺渁∝ 2024-11-15 05:41:02

您应该能够将路径粘贴到包含目录列表中。您可以用分号分隔路径。

c:\foo\baa;c:\program files\blah\blah;c:\whatever

在构建规则的早期版本中,如果包含目录以反斜杠结尾或用引号引起来,则似乎无法正确添加包含目录,因此请尝试避免其中任何一种。

You should just be able to paste the path into the include directories list. You can separate paths with a semicolon.

c:\foo\baa;c:\program files\blah\blah;c:\whatever

In earlier versions of the build rules, the include directory did not seem to be added correctly if it ended in a backslash, or if it was wrapped in quotes, so try and avoid either of those.

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