diff options
author | Jon Turney <jon.turney@dronecode.org.uk> | 2018-05-19 13:36:04 +0100 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek.chauhan@gmail.com> | 2018-06-03 21:06:23 +0000 |
commit | 7e08e958c0e3cdf7e6769027d8eeff5925b69d73 (patch) | |
tree | 38ca4d11be72f46402a0815fff12fa73174cb49e /docs/markdown/Reference-manual.md | |
parent | 50aabc01293afc4778a7c881ffa0c3a531c39dbe (diff) | |
download | meson-7e08e958c0e3cdf7e6769027d8eeff5925b69d73.zip meson-7e08e958c0e3cdf7e6769027d8eeff5925b69d73.tar.gz meson-7e08e958c0e3cdf7e6769027d8eeff5925b69d73.tar.bz2 |
Allow substitutions in custom_target() depfile:
Allow substitutions in custom_target() depfile: as well as in command:
Diffstat (limited to 'docs/markdown/Reference-manual.md')
-rw-r--r-- | docs/markdown/Reference-manual.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/markdown/Reference-manual.md b/docs/markdown/Reference-manual.md index 9b1c96f..a5733a2 100644 --- a/docs/markdown/Reference-manual.md +++ b/docs/markdown/Reference-manual.md @@ -285,6 +285,9 @@ the following special string substitutions: - `@PLAINNAME@`: the input filename, without a path - `@BASENAME@`: the input filename, with extension removed +The `depfile` keyword argument also accepts the `@BASENAME@` and `@PLAINNAME@` +substitutions. *(since 0.47)* + The returned object also has methods that are documented in the [object methods section](#custom-target-object) below. |