diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2019-07-25 03:38:56 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2019-07-25 03:39:50 +0530 |
commit | b0f4587663d76fd79639b7e22bcac3d859a3abec (patch) | |
tree | 6363f00fe921d3893cd6c01d9aed319b383b2917 | |
parent | dd42994f423a1ea71bd3ec1b686b58c51cfadd64 (diff) | |
download | meson-b0f4587663d76fd79639b7e22bcac3d859a3abec.zip meson-b0f4587663d76fd79639b7e22bcac3d859a3abec.tar.gz meson-b0f4587663d76fd79639b7e22bcac3d859a3abec.tar.bz2 |
docs: Document when install: was added to configure_file [skip ci]
Somehow we forgot to document this.
-rw-r--r-- | docs/markdown/Release-notes-for-0.50.0.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/markdown/Release-notes-for-0.50.0.md b/docs/markdown/Release-notes-for-0.50.0.md index 44e8573..62a4b80 100644 --- a/docs/markdown/Release-notes-for-0.50.0.md +++ b/docs/markdown/Release-notes-for-0.50.0.md @@ -334,3 +334,9 @@ Meson now generates a `meson-info.json` file in the `meson-info` directory to provide introspection information about the latest meson run. This file is updated when the build configuration is changed and the build files are (re)generated. + +## New kwarg `install:` for `configure_file()` + +Previously when using `configure_file()`, you could install the outputted file +by setting the `install_dir:` keyword argument. Now, there is an explicit kwarg +`install:` to enable/disable it. Omitting it will maintain the old behaviour. |