Replies: 1 comment 6 replies
-
Would automatically modifying the meson.build be a suitable solution? For example, a script that regenerates meson.build (or |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
We have projects that pull down data models as Ruby gems/.proto files and we generate C++ getters and setters for these models. So we have generated headers and source files.
If you update versions of the dependencies, some of these may go away, change, or new ones may be added. I would need a way to tell meson exactly what these sources and where the header includes are (aka, glob them), preferably without having to adjust the build files every time. These files are based on the ruby rake system, so they are only ever regenerated if their definitions have changed, so subsequent runs of meson build will not cause constant regeneration.
We would obviously prefer that we don't have to modify the meson build files to account for changes, but I understand that seems to be the intended design of meson? What compromises on this are the "least bad"?
Beta Was this translation helpful? Give feedback.
All reactions