mirror of
https://github.com/feschber/lan-mouse.git
synced 2026-04-16 09:41:28 +03:00
fix windows build
This commit is contained in:
@@ -1,14 +1,14 @@
|
|||||||
#[cfg(windows)]
|
#[cfg(windows)]
|
||||||
pub mod windows;
|
pub mod windows;
|
||||||
|
|
||||||
#[cfg(feature="x11")]
|
#[cfg(all(unix, feature="x11"))]
|
||||||
pub mod x11;
|
pub mod x11;
|
||||||
|
|
||||||
#[cfg(feature = "wayland")]
|
#[cfg(all(unix, feature = "wayland"))]
|
||||||
pub mod wlroots;
|
pub mod wlroots;
|
||||||
|
|
||||||
#[cfg(feature = "xdg_desktop_portal")]
|
#[cfg(all(unix, feature = "xdg_desktop_portal"))]
|
||||||
pub mod xdg_desktop_portal;
|
pub mod xdg_desktop_portal;
|
||||||
|
|
||||||
#[cfg(feature = "libei")]
|
#[cfg(all(unix, feature = "libei"))]
|
||||||
pub mod libei;
|
pub mod libei;
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
#[cfg(feature = "wayland")]
|
#[cfg(all(unix, feature = "wayland"))]
|
||||||
pub mod wayland;
|
pub mod wayland;
|
||||||
#[cfg(windows)]
|
#[cfg(windows)]
|
||||||
pub mod windows;
|
pub mod windows;
|
||||||
#[cfg(feature = "x11")]
|
#[cfg(all(unix, feature = "x11"))]
|
||||||
pub mod x11;
|
pub mod x11;
|
||||||
|
|||||||
Reference in New Issue
Block a user