diff options
| author | Xavier Claessens <xavier.claessens@collabora.com> | 2023-06-13 12:56:19 -0400 |
|---|---|---|
| committer | Xavier Claessens <xavier.claessens@collabora.com> | 2024-02-26 10:03:52 -0500 |
| commit | 4d55645c397e2f338a09ebd1f0f564c64b98dafa (patch) | |
| tree | 49900e8e73216724ec13f99707694fd3658f29a4 /docs | |
| parent | 114e032e6a27d0eb9ef5de1a811ce7b0461c3efc (diff) | |
| download | meson-4d55645c397e2f338a09ebd1f0f564c64b98dafa.tar.gz | |
cargo: Abort if features are missing
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/markdown/Wrap-dependency-system-manual.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/markdown/Wrap-dependency-system-manual.md b/docs/markdown/Wrap-dependency-system-manual.md index 7a0cea6fe..70a7b3023 100644 --- a/docs/markdown/Wrap-dependency-system-manual.md +++ b/docs/markdown/Wrap-dependency-system-manual.md @@ -345,7 +345,8 @@ the main project depends on `foo-rs` and `bar-rs`, and they both depend on `common-rs`. The main project will first look up `foo-rs` which itself will configure `common-rs` with a set of features. Later, when `bar-rs` does a lookup for `common-rs` it has already been configured and the set of features cannot be -changed. It is currently the responsability of the main project to resolve those +changed. If `bar-rs` wants extra features from `common-rs`, Meson will error out. +It is currently the responsability of the main project to resolve those issues by enabling extra features on each subproject: ```meson project(..., |
