如何在多平台项目中组织 makefile/解决方案等?
我有一个可以使用 Visual Studio、GCC 和一些嵌入式编译器进行编译的项目。源代码是共享的,但每个平台都需要单独的 makefile、项目文件、解决方案等。我可以通过两种方式组织它们:
- 混合在单个文件夹层次结构中
- 使用单独的文件夹来存放与平台相关的文件
第一个解决方案对哪个文件产生了一些混乱属于哪个平台,但第二个会导致文件夹结构的一些重复(某些编译器要求每个项目都有一个单独的文件夹)。
您认为哪个更好?
I have a project which can be compiled with Visual Studio, GCC and with some embedded compilers. Sources are shared, but each platform requires separate makefiles, project files, solutions etc. There are two ways I can organize them:
- Intermixed in a single hierarchy of folders
- With separate folders for platform-dependent files
The first solution creates some confusion about which file belongs to which platform, but the second causes some repetition of the folders structure (some compilers require each project to have a separate folder).
Which do you think is better?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我建议您查看 CMake。
它可以生成本机 Unix Makefile、Visual Studio 项目、Eclipse 项目等。
您仍然可以编写自定义平台规则来调整构建过程,但更容易。
I would advise you to look at CMake.
It can generate native Unix Makefiles, Visual Studio projects, Eclipse Projects, etc.
You will still be able to write custom platform rules to tweak the build process, but way easier.