mirror of
https://github.com/rustdesk/rustdesk.git
synced 2026-04-01 20:41:29 +03:00
try out wayland
This commit is contained in:
@@ -5,8 +5,17 @@ cfg_if! {
|
||||
mod quartz;
|
||||
pub use self::quartz::*;
|
||||
} else if #[cfg(x11)] {
|
||||
cfg_if! {
|
||||
if #[cfg(feature="wayland")] {
|
||||
mod linux;
|
||||
mod wayland;
|
||||
mod x11;
|
||||
pub use self::x11::*;
|
||||
pub use self::linux::*;
|
||||
} else {
|
||||
mod x11;
|
||||
pub use self::x11::*;
|
||||
}
|
||||
}
|
||||
} else if #[cfg(dxgi)] {
|
||||
mod dxgi;
|
||||
pub use self::dxgi::*;
|
||||
|
||||
Reference in New Issue
Block a user