-
I'm using v0.5.0 and cmake 3.20.2 and I'm probably missing something. I can use genex to read
I had the idea to explicitly use I'm not sure about the included So, does that even make sense? |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Corrosion can't know what a user defined build script will do. Corrosion does know what
Don't rely on implementation details of corrosion please. If you want to use build.rs (and thats a perfectly viable option), you can use |
Beta Was this translation helpful? Give feedback.
-
That's good to know! Let me try harder to get some headers out of it :)
That's exactly what I'm doing right now. It feels a bit odd, so I was looking for more elegant ways. Thank you! |
Beta Was this translation helpful? Give feedback.
corrosion_experimental_cbindgen()
is definitly usable and will probably be renamed to justcorrosion_cbindgen()
when i have some spare time.Corrosion can't know what a user defined build script will do. Corrosion does know what
corrosion_experimental_cbindgen()
does.Don't rely on implementation details of corrosion please.
If you want to use build.rs (and thats a perfectly viable option), you can use
corrosion_set_env_vars()
to set an environment variable with …