如何将不同的扩展文件编译为C++在 Visual Studio C 中2010年?
在我的 Visual Studio 2010 项目中,我有带有 .mm 文件扩展名的文件,需要将其编译为普通 C++ 文件。有没有办法为新扩展或类似的东西制定构建规则?在 VS 2008 中存在这样的选项,但在 2010 中这些选项消失了。
In my Visual Studio 2010 project I have files with .mm file extension, that need to be compiled as normal C++ files. Is there a way to make a build rule for new extensions or something like that? In VS 2008 there were options for that, but they are gone in 2010.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
对于单个文件:右键单击该文件 > >属性>配置属性 - 常规 >项目类型:C/C++ 编译器。
一般来说,对于项目:如何:选择要生成的文件,演练:使用 MSBuild< /a>, 演练:创建 MSBuild 项目文件从头开始。
For an individual file: Right click on the file > Properties > Configuration Properties - General > Item Type : C/C++ compiler.
In general for a project: How to: Select the Files to Build, Walkthrough: Using MSBuild, Walkthrough: Creating an MSBuild Project File from Scratch.
您可以通过以下方式设置如何针对任何未知文件类型编译文件:
You can set how the file will be compiled for any unknown file type by: