Include the Linux event loop module on macOS
This commit is contained in:
parent
0d401cf83a
commit
6fbec6393d
|
@ -4,6 +4,9 @@ use std::sync::Weak;
|
||||||
|
|
||||||
#[cfg(all(target_family = "unix", not(target_os = "macos")))]
|
#[cfg(all(target_family = "unix", not(target_os = "macos")))]
|
||||||
mod linux;
|
mod linux;
|
||||||
|
// For now, also use the Linux event loop on macOS so it at least compiles
|
||||||
|
#[cfg(target_os = "macos")]
|
||||||
|
mod linux;
|
||||||
#[cfg(target_os = "windows")]
|
#[cfg(target_os = "windows")]
|
||||||
mod windows;
|
mod windows;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue