The Meson Build System http://mesonbuild.com/
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

560 B

Deprecate build_always

Setting build_always to true for a custom target not only marks the target to be always considered out of date, but also adds it to the set of default targets. This option is therefore deprecated and the new option build_always_stale is introduced.

build_always_stale only marks the target to be always considered out of date, but does not add it to the set of default targets. The old behaviour can be achieved by combining build_always_stale with build_by_default.

The documentation has been updated accordingly.