diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2017-05-04 12:19:33 -0700 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2017-05-11 09:57:38 -0700 |
commit | c03744cccb3239a98803debf05b98793a1291aa7 (patch) | |
tree | 9172724c7546c602ac82431d84dde39accd5064a /docs/markdown | |
parent | e2567386f108c17704a9b300f56c0f2f2c0b4b54 (diff) | |
download | meson-c03744cccb3239a98803debf05b98793a1291aa7.zip meson-c03744cccb3239a98803debf05b98793a1291aa7.tar.gz meson-c03744cccb3239a98803debf05b98793a1291aa7.tar.bz2 |
Allow passing a list of Files to CustomTarget. Closes #1720
Diffstat (limited to 'docs/markdown')
-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 7e46da1..01f991d 100644 --- a/docs/markdown/Reference-manual.md +++ b/docs/markdown/Reference-manual.md @@ -137,7 +137,7 @@ These are all the supported keyword arguments: Create a custom top level build target. The only positional argument is the name of this target and the keyword arguments are the following. -- `input` list of source files +- `input` list of source files. As of 0.41.0 the list will be flattened. - `output` list of output files - `command` command to run to create outputs from inputs. The command may be strings or the return of `find_program()` or `executable()` (note: always specify commands in array form `['commandname', '-arg1', '-arg2']` rather than as a string `'commandname -arg1 -arg2'` as the latter will *not* work) - `install` when true, this target is installed during the install step |