-
Notifications
You must be signed in to change notification settings - Fork 65
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add project to meson WrapDB #90
Comments
@antoniovazquezblanco : thanks for the suggestion. Are you familiar with how to package a library for Meson? |
Well, I have just recently started using Meson. I believe one must be able to compile the project with meson.
I don't know if you would like to have meson build system support in tree. I may be able to provide an initial version that may be improved on the future... |
As it turns out, meson now supports building cmake projects. Initial approach to adding argtable to meson at mesonbuild/wrapdb#1381 |
@antoniovazquezblanco : Really appreciate that you help to provide PR for meson support. I'm curious. When you use argtable3, would you consider the amalgamation format first? When I use argtable3 in my own projects, I always add |
Well, I could consider amalgamation and copy the files but I believe that would be a patch to a not very useful dependency system. I can just add a couple lines in my build file and manage the dependency externally without effort. That should help me manage and track software versions. Whenever there is an update or an external change I do not need to copy files again, the build system can take care of that for me... The idea would be to also be able to identify my external dependencies so that I can keep track of them and even track possible vulnerabilities in them. Plus, if correctly defined, as you said if my OS provides a shared lib, I can compile my program without having it statically linked... In the end, an amalgamation version is really nice when a good dependency manager is not available. |
@antoniovazquezblanco : Thanks for your comment. Now I know why many developers asked me to support vcpkg, which I've supported since a few years ago. |
Meson build system provides a list of projects that are available to be downloaded and used as dependencies if not found in the compiling system.
It would be nice to have argtable available there!
https://mesonbuild.com/Wrapdb-projects.html
The text was updated successfully, but these errors were encountered: