diff options
author | Daniel Mensinger <daniel@mensinger-ka.de> | 2019-03-03 22:12:31 +0100 |
---|---|---|
committer | Daniel Mensinger <daniel@mensinger-ka.de> | 2019-03-03 23:19:04 +0100 |
commit | 7074f12644ae0ddc7f8d7471f776bce3375934d4 (patch) | |
tree | 6bfd86d2d81059ab48771752db0770045710e94e /docs/markdown/snippets | |
parent | 185dc8c2e5d8e429f5d55d18800d6a4487194f09 (diff) | |
download | meson-7074f12644ae0ddc7f8d7471f776bce3375934d4.zip meson-7074f12644ae0ddc7f8d7471f776bce3375934d4.tar.gz meson-7074f12644ae0ddc7f8d7471f776bce3375934d4.tar.bz2 |
mintro: Renamed --dependencies --> --scan-dependencies
Diffstat (limited to 'docs/markdown/snippets')
-rw-r--r-- | docs/markdown/snippets/introspect_deps_no_bd.md | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/docs/markdown/snippets/introspect_deps_no_bd.md b/docs/markdown/snippets/introspect_deps_no_bd.md index a28b667..cfae58b 100644 --- a/docs/markdown/snippets/introspect_deps_no_bd.md +++ b/docs/markdown/snippets/introspect_deps_no_bd.md @@ -1,10 +1,7 @@ -## `introspect --dependencies` can now be used without configured build directory +## `introspect --scan-dependencies` can now be used to scan for dependencies used in a project -It is now possible to run `meson introspect --dependencies /path/to/meson.build` -without a configured build directory. - -However, the generated output is vastly different from running the introspection -command with a build directory. +It is now possible to run `meson introspect --scan-dependencies /path/to/meson.build` +without a configured build directory to scan for dependencies. The output format is as follows: @@ -25,4 +22,4 @@ in the `meson.build` (all dependencies are required by default). The inside a conditional block. In a real meson run these dependencies might not be used, thus they _may_ not be required, even if the `required` key is set. The `has_fallback` key just indicates whether a fallback was directly set in the -`dependency()` function.
\ No newline at end of file +`dependency()` function. |