diff options
author | Xavier Claessens <xavier.claessens@collabora.com> | 2019-09-06 18:52:50 -0400 |
---|---|---|
committer | Xavier Claessens <xclaesse@gmail.com> | 2019-09-17 13:05:40 -0400 |
commit | ef3992f1cc2db7467fef2395ac3ec191eea154f0 (patch) | |
tree | 8b62e92179b0ea41fd7ac22aaa91a604362ac64e /docs/markdown/Reference-manual.md | |
parent | 5d0ced220c56a7599913c9e249b85f0d6a060821 (diff) | |
download | meson-ef3992f1cc2db7467fef2395ac3ec191eea154f0.zip meson-ef3992f1cc2db7467fef2395ac3ec191eea154f0.tar.gz meson-ef3992f1cc2db7467fef2395ac3ec191eea154f0.tar.bz2 |
configure_file(): Allow multiple inputs in command mode
Closes: #5893
Diffstat (limited to 'docs/markdown/Reference-manual.md')
-rw-r--r-- | docs/markdown/Reference-manual.md | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/markdown/Reference-manual.md b/docs/markdown/Reference-manual.md index bdcbe1f..c701caf 100644 --- a/docs/markdown/Reference-manual.md +++ b/docs/markdown/Reference-manual.md @@ -251,7 +251,10 @@ These are all the supported keyword arguments: `output`. Available since v0.41.0. - `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. + you to do fully custom file generation. Since *0.52.0* the command can contain + file objects and more than one file can be passed to the `input` keyword + argument, see [`custom_target()`](#custom_target) for details about string + substitutions. - `copy` *(added 0.47.0)* as explained above, if specified Meson only copies the file from input to output. - `format` *(added 0.46.0)* the format of defines. It defaults to `meson`, and so substitutes |