You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, you only have fn build_lib() -> Result<LibInfos> { } for #[cfg(target_os = "macos")] and #[cfg(target_os = "linux")]. Due to this, when running any of the examples on a Windows machine, the code panics because fn bundle_lib_and_link() -> Result<()> { } can't find a build_libfn.
Considering Mosquitto supports building for Windows w/ cmake, do you have any plans to add Windows support?
Thanks!
The text was updated successfully, but these errors were encountered:
Currently, you only have
fn build_lib() -> Result<LibInfos> { }
for#[cfg(target_os = "macos")]
and#[cfg(target_os = "linux")]
. Due to this, when running any of the examples on a Windows machine, the code panics becausefn bundle_lib_and_link() -> Result<()> { }
can't find abuild_lib
fn
.Considering Mosquitto supports building for Windows w/
cmake
, do you have any plans to add Windows support?Thanks!
The text was updated successfully, but these errors were encountered: