|
|
|
|
|
by saghm
3338 days ago
|
|
It's staggering to me how much time and effort we have to put into our build system for our C++ project at work. Having come to the C++ world after learning Rust, I'm constantly pining for the dead-simple "just works" nature of Cargo. |
|
Lack of support for binary libraries, specially among projects is a big deal breaker.
Watching the same dependencies being compiled multiple times isn't fun.
Yes, downloading the libraries, placing them in some directory and configuring paths might take some time.
But afterwards, C++ builds are quite fast as they just link to the provided libraries, instead of building the world every single time.