mirror of
https://github.com/mesonbuild/meson.git
synced 2026-08-08 16:50:52 +00:00
This gives a way to conditionally override a keyword argument, such as when setting a value specifically for one platform. For example, ```meson library( ..., name_prefix : host_machine.system() == 'windows' ? '' : default(), ) ```