aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/snippets/meson_configure_options_changes.md
blob: c86792ceb52ad0fa10319d8ad9b2b38f88d3bd88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
## Meson configure handles changes to options in more cases

Meson configure now correctly handles updates to the options file without a full
reconfigure. This allows making a change to the `meson.options` or
`meson_options.txt` file without a reconfigure.

For example, this now works:
```sh
meson setup builddir
git pull
meson configure builddir -Doption-added-by-pull=value
```