-
Notifications
You must be signed in to change notification settings - Fork 233
Add jfinkhaeuser/json-rpc #249
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
Changes from all commits
630811b
004e006
73d23c6
4dcc3aa
29df9a1
42e0665
d75caf3
5cf327d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
[wrap-file] | ||
directory = json-rpc | ||
source_url = https://codeberg.org/jfinkhaeuser/json-rpc/archive/v0.1.1.tar.gz | ||
source_filename = v0.1.1.tar.gz | ||
source_hash = 88002cc87ae87d56c76e9e4bc46456198cb4dd048913d4395ee79c974e14df8d | ||
|
||
[provide] | ||
json_rpc = json_rpc_dep | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It seems that this provides a subproject accessible declared dependency, but does not install a pkg-config file for system use or for use in projects that use a build system other than meson. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Correct. I don't particularly mind pkg-config, but it's not very high on my priority list. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's trivial to add, meson has a built-in exporter for it. :) pkgconfig = import('pkgconfig')
pkgconfig.generate(foo_lib) There are optional kwargs that can fine tune the metadata, for example giving the project description. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Just to note, adding a |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is the purpose of disabling warnings here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I use specific warning flags rather than relying on meson doing what I want it to do.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you have a specific concern about what meson may do here?