diff options
author | Bálint Aradi <baradi09@gmail.com> | 2017-06-03 11:37:56 +0200 |
---|---|---|
committer | Bálint Aradi <baradi09@gmail.com> | 2017-06-03 16:51:58 +0200 |
commit | 706b3cafab114e8d7ff7306cb471259ae1597e04 (patch) | |
tree | bd932935cba186808024ced12678333f5f1a5708 | |
parent | 28dededf083b6cae170a175309d064502fcc9eef (diff) | |
download | meson-706b3cafab114e8d7ff7306cb471259ae1597e04.zip meson-706b3cafab114e8d7ff7306cb471259ae1597e04.tar.gz meson-706b3cafab114e8d7ff7306cb471259ae1597e04.tar.bz2 |
Add version for configure_file extension in reference manual
-rw-r--r-- | docs/markdown/Reference-manual.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/markdown/Reference-manual.md b/docs/markdown/Reference-manual.md index 4c2f8ef..29c073c 100644 --- a/docs/markdown/Reference-manual.md +++ b/docs/markdown/Reference-manual.md @@ -124,7 +124,7 @@ When a list of strings is passed to the `command:` keyword argument, it takes an These are all the supported keyword arguments: - `input` the input file name. If it's not specified in configuration mode, all the variables in the `configuration:` object (see above) are written to the `output:` file. -- `output` the output file name (may contain `@PLAINNAME@` or `@BASENAME@` substitutions). In configuration mode, the permissions of the input file (if it is specified) are copied to the output file. +- `output` the output file name (since v0.41.0, may contain `@PLAINNAME@` or `@BASENAME@` substitutions). In configuration mode, the permissions of the input file (if it is specified) are copied to the output file. - `configuration` as explained above, this is where you pass the configuration data object as returned by `configuration_data()` - `command` as explained above, if specified, Meson does not create the file itself but rather runs the specified command, which allows you to do fully custom file generation - `install_dir` the subdirectory to install the generated file to (e.g. `share/myproject`), if omitted the file is not installed. |