Visual Studio 制作
虽然我喜欢 Unix 工具集系列(包括它的害群之马 Make),但我目前正在从事的项目是跨平台的。 这意味着有一个 Visual Studio 项目可供构建。
所以我的问题是,是否有一个工具/插件可以将 Make 文件导入到 VS 中,或者相反,是否有一种方法可以将 Visual Studio 项目导出到 Make 中? 实际上,或者任何文本形式。 我可以编写一个脚本将其解析为 Make 文件。
While I love the Unix toolset family(including its black sheep Make) the project I'm working on currently is cross platform. That means having a Visual studio project ready for build.
So my question is, is there a tool/plugin for importing a Make file into VS or conversely is there a way to export a visual studio project into Make? Or any textual form, actually. I could write a script that parsed that into a Make file.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议使用 Cmake... 它将生成一组 makefile 或 Visual Studio 项目。
I would suggest making using Cmake... which will generate a set of makefiles or a visual Studio Project.