Replies: 1 comment
-
Hi, I find this interesting since I would like to write unit-tests ensuring all files are effectively handled by meson ... |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
In my project, I want to write scripts to do the following:
meson.build
files (missing subdir, missing source files, etc.)meson.build
files (when creating a new library in the project, or when importing existing part of the project)meson.build
files format (indentations, blank lines, etc.)meson provides
introspect --ast
andrewrite
commands. However, those commands seem to only support partially what I want to achieve. What would be the best approach?Should I try to improve meson to be able to:
Or would I be better to do this on my own, using regexp and string manipulation?
Beta Was this translation helpful? Give feedback.
All reactions