哪些文件属于 CDT 托管构建中的构建目标?

发布于 2024-10-06 20:51:53 字数 194 浏览 3 评论 0原文

在 CDT 的托管构建器中,如何将各个文件分配给构建配置?

具体来说,我如何:

  • 指示配置 A 必须构建并链接文件夹 A 和 B 中的源,而配置 B 应使用文件夹 A 和 C,
  • 包括来自引用项目(或任何外部项目)的源(不是标头)源文件?) 也可以作为给定项目的一部分进行构建和链接?

In CDT's managed builder, how are individual files assigned to build configurations?

Specifically, how can I:

  • indicate that configuration A has to build and link sources from folders A and B, while configuraion B shall use folders A and C,
  • include sources (not headers) from a referenced project (or just any external source files?) to be also built and linked as a part of a given project?

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

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

发布评论

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

评论(1

ぃ双果 2024-10-13 20:51:53
  • 第一点,假设有 3 个文件夹 A、B 和C 包含 .cpp 文件,试试这个:
    在“项目资源管理器”窗格中选择文件夹 C,右键单击 >从构建中排除...>检查配置A>好的
    选择文件夹B,右键单击>从构建中排除...>检查配置B>好的
    这样,配置 A 将忽略文件夹 C 中的 .cpp 文件,配置 B 将忽略文件夹 B。
  • 第二点:也许你可以使用 import > 。一般>文件系统将源从外部文件夹导入到您的项目中?
  • 1st point, assuming there are 3 folders A,B & C containing .cpp files, try this :
    select folder C in the 'project explorer' pane, right-click > exclude from build... > check configuration A > ok
    select folder B, right-click > exclude from build... > check configuration B > ok
    This way configuration A will ignore .cpp files from folder C and configuration B will ignore folder B.
  • 2nd point : maybe you could use import > general > file system to import source from an external folder into your project ?
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文