RustAudio / baseview

low-level window system interface for audio plugin UIs
Apache License 2.0
266 stars 57 forks source link

Please add FreeBSD support #91

Open yurivict opened 3 years ago

yurivict commented 3 years ago

Here https://github.com/RustAudio/baseview/blob/master/src/window.rs#L12 FreeBSD support should be added.

@@ -11,6 +11,8 @@
 use crate::win as platform;
 #[cfg(target_os = "linux")]
 use crate::x11 as platform;
+#[cfg(target_os = "freebsd")]
+use crate::x11 as platform;

 pub trait WindowHandler {
     fn on_frame(&mut self);
yurivict commented 1 year ago

https://github.com/RustAudio/baseview/pull/131