如何在多平台项目中组织 makefile/解决方案等?

发布于 2024-09-05 21:29:49 字数 262 浏览 2 评论 0原文

我有一个可以使用 Visual Studio、GCC 和一些嵌入式编译器进行编译的项目。源代码是共享的,但每个平台都需要单独的 makefile、项目文件、解决方案等。我可以通过两种方式组织它们:

  1. 混合在单个文件夹层次结构中
  2. 使用单独的文件夹来存放与平台相关的文件

第一个解决方案对哪个文件产生了一些混乱属于哪个平台,但第二个会导致文件夹结构的一些重复(某些编译器要求每个项目都有一个单独的文件夹)。

您认为哪个更好?

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:

  1. Intermixed in a single hierarchy of folders
  2. 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 技术交流群。

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

发布评论

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

评论(1

如梦亦如幻 2024-09-12 21:29:49

我建议您查看 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文