-
For development purposes, I'd like to display the arrays of properties configured in an executable object, with all dependencies collected. I tried the naive way:
but it failed with:
From this message I understand that Any solution to this? The same question for dependencies objects. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
There are no such properties on an If you want to look at the final result, you may want to try |
Beta Was this translation helpful? Give feedback.
-
As noted in another answer, there is no way within meson to access the include directories. I've had this issue before with respect to setting up custom linters and other build targets. My resolution so far has been to create a wrapper script which consumes the Could you provide some more context on what you need the include directories for? |
Beta Was this translation helpful? Give feedback.
-
I retain that within meson there is no way to access these object properties. Thank you for your comments. |
Beta Was this translation helpful? Give feedback.
There are no such properties on an
executable
, neither for reading nor for writing.If you want to look at the final result, you may want to try
meson introspect
.