有什么好的 C++ 项目构建工具,可以代替 make 吗?

2021-12-28 00:00:00 makefile c++ build-process

我想知道是否有任何漂亮而简洁的工具来代替 GNU Autotools 或 Make 来构建一个非常大的 C++ 项目,这些项目使用起来非常复杂.

i'm wondering if there is any nice and neat tool to replace the GNU Autotools or Make to build a very large C++ project, which are such a complicated thing to use.

如果项目很小,生成de Autotools需要的所有文件很简单,但是如果源代码分在很多目录下,有多个第三方库和很多依赖,你就陷入了Autotools地狱"..

It is simple to generate all the files that de Autotools require if the project is small, but if the source code is divided in many directories, with multiple third party libraries and many dependencies, you fall into the "Autotools Hell"..

感谢您的任何建议

推荐答案

Google V8 JavaScript 引擎 是用 C++ 编写的,并使用 SCons,所以我想这是对它的一票.

The Google V8 JavaScript Engine is written in C++ and uses SCons, so I guess that's one vote for it.

相关文章