Ninja Build might be a bit more popular than SCons. We know about 22 links to it since March 2021 and only 16 links to SCons. We are tracking product recommendations and mentions on various public social media platforms and blogs. They can help you identify which product is more popular and what people think of it.
Under the hood, Rescript uses a build system called Ninja. Ninja is similar to Make, but cross-platform and more minimal/performant. - Source: dev.to / over 1 year ago
Ninja was super easy to pick up even after using make for some time (10+ years). GN is just a ninja generator that is optional. https://gn.googlesource.com/gn/+/main/docs/quick_start.md https://ninja-build.org/. - Source: Hacker News / over 1 year ago
Really? I thought most new projects were switching to ninja[^1] and have never used it. [^1]: https://ninja-build.org/. - Source: Hacker News / over 1 year ago
Ninja showed real promise for a while, but then CMake grew up and people stopped seeing a reason to leave it behind. Source: almost 2 years ago
Now that you have your build system all generated you can go ahead and build everything. By default Meson will use Ninja as the build tool. Ninja is similar to Make but much much faster. You can also generate additional build systems but that's outside of the scope of this post. - Source: dev.to / about 2 years ago
Scons is very easy and readable yet very powerful. It is Python based and extensible. https://scons.org/. - Source: Hacker News / 16 days ago
Has anyone tried SCONS? Came across someone using it in a place where I worked earlier. Python-based make-like tool. https://scons.org/. - Source: Hacker News / 12 months ago
The most comprehensive make alternative in python I've seen is Scons (https://scons.org/) It would be worth to see how they tackles some of the challenges you're looking into. Blurb from the website: SCons is an Open Source software construction tool. Think of SCons as an improved, cross-platform substitute for the classic Make utility with integrated functionality similar to autoconf/automake and compiler caches... - Source: Hacker News / over 1 year ago
Https://scons.org/ It has cache facility to speed up re-builds. - Source: Hacker News / almost 2 years ago
SCons never got popular enough to escape the niches it grew up in. Source: almost 2 years ago
GNU Make - GNU Make is a tool which controls the generation of executables and other non-source files of a program from the program's source files.
Meson - Meson is an open source build system meant to be both extremely fast, and, even more importantly...
CMake - CMake is an open-source, cross-platform family of tools designed to build, test and package software.
npm - npm is a package manager for Node.
SBT - SBT is a build tool for Scala, like Ant or Maven but with hieroglyphics.
Buck - A high-performance build tool for Android by Facebook