diff options
author | Daniel Mensinger <daniel@mensinger-ka.de> | 2019-03-03 14:58:36 +0100 |
---|---|---|
committer | Daniel Mensinger <daniel@mensinger-ka.de> | 2019-03-04 13:00:30 +0100 |
commit | 594bf678c7aaf676ce02d7d8a7d33e04c42c6b39 (patch) | |
tree | 338321b431b0096c682f15e9075f082577ec4833 /docs/markdown | |
parent | 976c136ab6897809ba94bd1ada1a8cd831236cfa (diff) | |
download | meson-594bf678c7aaf676ce02d7d8a7d33e04c42c6b39.zip meson-594bf678c7aaf676ce02d7d8a7d33e04c42c6b39.tar.gz meson-594bf678c7aaf676ce02d7d8a7d33e04c42c6b39.tar.bz2 |
rewriter: Require '/' for the project ID
Diffstat (limited to 'docs/markdown')
-rw-r--r-- | docs/markdown/Rewriter.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/markdown/Rewriter.md b/docs/markdown/Rewriter.md index 73611e9..b6301d6 100644 --- a/docs/markdown/Rewriter.md +++ b/docs/markdown/Rewriter.md @@ -86,14 +86,14 @@ meson rewriter kwargs {set/delete} <function type> <function ID> <key1> <value1> For instance, setting the project version can be achieved with this command: ```bash -meson rewriter kwargs set project '' version 1.0.0 +meson rewriter kwargs set project / version 1.0.0 ``` Currently, only the following function types are supported: - dependency - target (any build target, the function ID is the target name/ID) -- project (the function ID must be an empty string since project() can only be called once) +- project (the function ID must be `/` since project() can only be called once) For more information see the help output of the rewriter kwargs command. |