mirror of
https://github.com/feschber/lan-mouse.git
synced 2026-03-08 04:20:01 +03:00
15 lines
269 B
Rust
15 lines
269 B
Rust
#[cfg(windows)]
|
|
pub mod windows;
|
|
|
|
#[cfg(all(unix, feature="x11"))]
|
|
pub mod x11;
|
|
|
|
#[cfg(all(unix, feature = "wayland"))]
|
|
pub mod wlroots;
|
|
|
|
#[cfg(all(unix, feature = "xdg_desktop_portal"))]
|
|
pub mod xdg_desktop_portal;
|
|
|
|
#[cfg(all(unix, feature = "libei"))]
|
|
pub mod libei;
|