loyd / rscam

Rust wrapper for v4l2
Other
116 stars 22 forks source link

Adds better error message for non-supported OSes #17

Closed joelgallant closed 6 years ago

joelgallant commented 6 years ago

See how #13 could be confusing to people. I wasn't sure if build.rs is the best place for this kind of this, but asked on discord and it seemed to be the recommended approach.

There's no way this library would / could work on macOS or Windows right?

loyd commented 6 years ago

Thanks!

I wasn't sure if build.rs is the best place for this kind of this

See compile_error.

There's no way this library would / could work on macOS or Windows right?

Probably not right now =(.

joelgallant commented 6 years ago

Cool, thanks for the tip (compile_error) - moved the error into lib.rs

loyd commented 6 years ago

Thanks!