diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2018-12-16 19:35:34 +0200 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2018-12-16 19:35:34 +0200 |
commit | 83c12edde9b37f46680209123cf301442706a7e7 (patch) | |
tree | acf22ad23ecca33f842893fc161193220ef96a48 /docs/markdown/Reference-manual.md | |
parent | c208e81e1a47b54a1efb536e164b06275ddd7cd9 (diff) | |
download | meson-endmessage.tar.gz |
Add end_message to print status messages on successfull exit.endmessage
Diffstat (limited to 'docs/markdown/Reference-manual.md')
-rw-r--r-- | docs/markdown/Reference-manual.md | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/markdown/Reference-manual.md b/docs/markdown/Reference-manual.md index 531836421..714a2595a 100644 --- a/docs/markdown/Reference-manual.md +++ b/docs/markdown/Reference-manual.md @@ -431,6 +431,16 @@ The returned object also has methods that are documented in the Returns a [disabler object](#disabler-object). Added in 0.44.0. +### end_message() + +Added in 0.50.0. This function can be used to print status messages at +the end of a Meson run. It is usually used to print a summary of +essential configuration settings. The function takes either one or two +strings, so it can be used to print both plain messages as well as +key-value pairs. Meson will automatically format the latter kind so +that all values are vertically aligned. Thus it recommended to use +fairly short message strings. + ### error() ``` meson |