Replies: 2 comments 5 replies
-
Since dependency_names is |
Beta Was this translation helpful? Give feedback.
0 replies
-
Meson can synthesize new My understanding is the eventual goal is to plumb this into |
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi! I'm trying to port a fairly complex project to Rust, and since I need to heavily interface with existing C/C++ libraries, I'm trying to use a polyglot build system, in this case Meson. I managed to make it compile Rust, and link against one of the C libraries I'm using. Now, I want to use an external crate (for the sake of MWE, let's say
rand
). How can I make Meson automatically download and compile the crate and its dependencies, like Cargo does?I managed to write a rand.wrap file
and my relevant meson.build is
but I get the error
and in case it's useful, the complete log is
What am doing wrong? think this may be related to #13466 . Thanks!
Beta Was this translation helpful? Give feedback.
All reactions