Say I have the following dependency chain, dependency A depends on B which depends on C. All 3 are specified as dep
objects.
The headers of B include headers in C.
I am finding that when I compile A I must list C as an explicit dependency even if B is already listed as a dependency, otherwise C's headers are not available in A's translation units.
How can I instruct meson to automatically include C's headers wherever B is used as a dependency?