Hacker News new | ask | show | jobs
by Shadonototra 1662 days ago
build.rs is the way to go, configuration withing configuration files is the root for evils like XML scripting in msbuild
1 comments

The best way is to keep scripting out of build files. Build recipes must be simple, boring, reliable, and same everywhere.

Gradle and SBT allow unlimited scripting and builds often end up as an unreliable mess. The more cleverness they put into the build definition, the more frustrating it is to use in practice.

that's a very good and solid point!