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 吗?


基础教程推荐
- 我有静态或动态 boost 库吗? 2021-01-01
- 静态库、静态链接动态库和动态链接动态库的 .lib 文件里面是什么? 2021-01-01
- 如何检查GTK+3.0中的小部件类型? 2022-11-30
- 这个宏可以转换成函数吗? 2022-01-01
- C++结构和函数声明。为什么它不能编译? 2022-11-07
- 如何通过C程序打开命令提示符Cmd 2022-12-09
- 常量变量在标题中不起作用 2021-01-01
- 如何在 C++ 中初始化静态常量成员? 2022-01-01
- 如何将 std::pair 的排序 std::list 转换为 std::map 2022-01-01
- 在 C++ 中计算滚动/移动平均值 2021-01-01