Any good building tools for a C++ project, which can replace make?(有什么好的 C++ 项目构建工具,可以代替 make 吗?)
问题描述
我想知道是否有任何漂亮而简洁的工具来代替 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.
这篇关于有什么好的 C++ 项目构建工具,可以代替 make 吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:有什么好的 C++ 项目构建工具,可以代替 make 吗?


基础教程推荐
- 为什么 RegOpenKeyEx() 在 Vista 64 位上返回错误代码 2021-01-01
- 通过引用传递 C++ 迭代器有什么问题? 2022-01-01
- 为什么派生模板类不能访问基模板类的标识符? 2021-01-01
- 如果我为无符号变量分配负值会发生什么? 2022-01-01
- GDB 显示调用堆栈上函数地址的当前编译二进制文 2022-09-05
- 初始化列表*参数*评估顺序 2021-01-01
- CString 到 char* 2021-01-01
- 为什么 typeid.name() 使用 GCC 返回奇怪的字符以及如 2022-09-16
- 非静态 const 成员,不能使用默认赋值运算符 2022-10-09
- 我应该对 C++ 中的成员变量和函数参数使用相同的名称吗? 2021-01-01