fix windows build

This commit is contained in:
Ferdinand Schober
2023-02-17 13:41:06 +01:00
parent 4c66b37a2f
commit ad68bc53fd
2 changed files with 6 additions and 6 deletions

View File

@@ -1,14 +1,14 @@
#[cfg(windows)]
pub mod windows;
#[cfg(feature="x11")]
#[cfg(all(unix, feature="x11"))]
pub mod x11;
#[cfg(feature = "wayland")]
#[cfg(all(unix, feature = "wayland"))]
pub mod wlroots;
#[cfg(feature = "xdg_desktop_portal")]
#[cfg(all(unix, feature = "xdg_desktop_portal"))]
pub mod xdg_desktop_portal;
#[cfg(feature = "libei")]
#[cfg(all(unix, feature = "libei"))]
pub mod libei;

View File

@@ -1,6 +1,6 @@
#[cfg(feature = "wayland")]
#[cfg(all(unix, feature = "wayland"))]
pub mod wayland;
#[cfg(windows)]
pub mod windows;
#[cfg(feature = "x11")]
#[cfg(all(unix, feature = "x11"))]
pub mod x11;