哪些文件属于 CDT 托管构建中的构建目标?
在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在“项目资源管理器”窗格中选择文件夹 C,右键单击 >从构建中排除...>检查配置A>好的
选择文件夹B,右键单击>从构建中排除...>检查配置B>好的
这样,配置 A 将忽略文件夹 C 中的 .cpp 文件,配置 B 将忽略文件夹 B。
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.