diff options
author | Pablo Correa Gómez <ablocorrea@hotmail.com> | 2023-05-23 17:13:38 +0200 |
---|---|---|
committer | Eli Schwartz <eschwartz93@gmail.com> | 2023-05-23 23:07:16 -0400 |
commit | e65f741e7994bdf7e3a48d22334825b638e70e38 (patch) | |
tree | 7e3ac851c5775360f3634f023114f7f16a5c5d14 | |
parent | e37394fe1dbfe325acb300204797130dceb9891e (diff) | |
download | meson-e65f741e7994bdf7e3a48d22334825b638e70e38.zip meson-e65f741e7994bdf7e3a48d22334825b638e70e38.tar.gz meson-e65f741e7994bdf7e3a48d22334825b638e70e38.tar.bz2 |
docs: gnome: mention that compile_resources adds dependencies by default
It is not very clear from the documentation that the dependencies in the
resource file are added as default dependencies to the target.
-rw-r--r-- | docs/markdown/Gnome-module.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/markdown/Gnome-module.md b/docs/markdown/Gnome-module.md index 7b7b595..d0cd24a 100644 --- a/docs/markdown/Gnome-module.md +++ b/docs/markdown/Gnome-module.md @@ -40,6 +40,8 @@ takes two positional arguments. The first one is the name of the resource and the second is the XML file containing the resource definitions. If the name is `foobar`, Meson will generate a header file called `foobar.h`, which you can then include in your sources. +The resources specified are automatically added as dependencies of the +generated target. * `c_name`: passed to the resource compiler as an argument after `--c-name` |