summaryrefslogtreecommitdiff
path: root/docs/markdown/snippets/msetup.md
AgeCommit message (Collapse)Author
2023-11-19Generate release notes for 1.3.0.Jussi Pakkanen
2023-08-25msetup: Update options when builddir is already configuredXavier Claessens
`meson setup -Dfoo=bar builddir` command was returning success ignoring new option values. This now also update options. It is useful because it means `meson setup -Dfoo=bar builddir && ninja -C builddir` works regardless whether builddir already exists or not, and when done in a script, changing options in the script will automatically trigger a reconfigure if needed. This was already possible by always passing --reconfigure argument, but that triggers a reconfigure even when options did not change.