1
0
Fork 0

Include the Linux event loop module on macOS

This commit is contained in:
Robbert van der Helm 2022-02-15 21:31:02 +01:00
parent 0d401cf83a
commit 6fbec6393d

View file

@ -4,6 +4,9 @@ use std::sync::Weak;
#[cfg(all(target_family = "unix", not(target_os = "macos")))]
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")]
mod windows;