diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2021-12-06 21:45:21 -0800 |
---|---|---|
committer | Eli Schwartz <eschwartz@archlinux.org> | 2021-12-08 14:41:24 -0500 |
commit | 8b5c6ab8f1dd30120c09f06ed20dda27dfb6e725 (patch) | |
tree | 4248bf7c44b5bd3ff6333288068c633c93a40c09 | |
parent | 1e5d7f212246e967f3473a55f632f6f5eda87b65 (diff) | |
download | meson-8b5c6ab8f1dd30120c09f06ed20dda27dfb6e725.zip meson-8b5c6ab8f1dd30120c09f06ed20dda27dfb6e725.tar.gz meson-8b5c6ab8f1dd30120c09f06ed20dda27dfb6e725.tar.bz2 |
docs: Add the `configuration` keyword argument to `configure_File`
We were missing the most important keyword argument of them all!
-rw-r--r-- | docs/yaml/functions/configure_file.yaml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/yaml/functions/configure_file.yaml b/docs/yaml/functions/configure_file.yaml index 4bce368..8f4d9e0 100644 --- a/docs/yaml/functions/configure_file.yaml +++ b/docs/yaml/functions/configure_file.yaml @@ -40,6 +40,13 @@ kwargs: argument, see [[custom_target]] for details about string substitutions. + configuration: + type: "cfg_data | dict[str | int | bool]" + description: | + As explained above, when passed this will provide the replacement + data for the input file (if provided) or key value pairs to be + written to the output. + copy: type: bool default: false |