Build systems

What is the best build system?
Which build system do you use?

Attached: blaze it.jpg (523x526, 11.7K)

Other urls found in this thread:

en.wikipedia.org/wiki/Bazel_(software)
twitter.com/AnonBabble

non-gnu make

gnu make

The absence of one. That is when you don't need one. :^)
If you choose Python, you almost never need any of that shit.

Attached: 101531514.jpg (819x1080, 80.71K)

Attached: слишком толсто.png (314x128, 8.99K)

cargo
cargo

cmake

Cmake and I don't use one, I just compile games from github.

This. I'd gladly do POSIX make, but doing
obj/%.o: src/%.c | obj/ $(CC) $(CPPFLAGS) $(CFLAGS) -c $< -o $@obj/: @mkdir obj/
in it is painful. The override keyword is also pretty good, even if I could do without.