I've encountered some projects which uses meson to organize their building system. But when I want to debug their building system, I found it's difficult. The most important task is observing the building system's variable during its running. I could use message() function to show the variables of types, e.g.
integer
string
lists (of string/integer/lists)
But if the variable is dictionary type, the message() will refuse to display any information in the variable.
Does meson have a general function to display any type's variable just like python's print() function? If not, do we have any solution to do this?
Thanks in advance.