aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorCharles Brunet <charles.brunet@optelgroup.com>2023-08-10 14:35:18 -0400
committerEli Schwartz <eschwartz93@gmail.com>2023-08-18 00:36:49 -0400
commit7cbe37ebd94e9df984328fd9722cc2fc9f61651b (patch)
treebeb5045353c7fc7da5fd7db01e95db3af2073f1c /docs
parent88747b4f8d4bb35c82c8855ecbd6a29ea419b6fd (diff)
downloadmeson-7cbe37ebd94e9df984328fd9722cc2fc9f61651b.zip
meson-7cbe37ebd94e9df984328fd9722cc2fc9f61651b.tar.gz
meson-7cbe37ebd94e9df984328fd9722cc2fc9f61651b.tar.bz2
Add more descriptive description to CustomTarget
Allow modules using CustomTarget to modify the command description used by ninja backend. This result in more precise logs when building a project.
Diffstat (limited to 'docs')
-rw-r--r--docs/markdown/snippets/custom_target_description.md6
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/markdown/snippets/custom_target_description.md b/docs/markdown/snippets/custom_target_description.md
new file mode 100644
index 0000000..fd8820e
--- /dev/null
+++ b/docs/markdown/snippets/custom_target_description.md
@@ -0,0 +1,6 @@
+## More meaningful description of many generative tasks
+
+When a module uses a `CustomTarget` to process files, it now has the possibility
+to customize the message displayed by ninja.
+
+Many modules were updated to take advantage of this new feature.