1
0
Fork 0
mirror of https://github.com/alacritty/alacritty.git synced 2025-10-30 23:36:53 -04:00

Make it run on FreeBSD

This commit is contained in:
johalun 2017-01-12 13:16:09 -08:00 committed by Joe Wilm
parent a2cd4b647c
commit 398e31fa37
4 changed files with 18 additions and 10 deletions

View file

@ -40,13 +40,12 @@ pub trait Store : Load {
where S: Into<String>;
}
#[cfg(target_os = "linux")]
#[cfg(any(target_os = "linux", target_os = "freebsd"))]
mod x11;
#[cfg(target_os = "linux")]
#[cfg(any(target_os = "linux", target_os = "freebsd"))]
pub use x11::{Clipboard, Error};
#[cfg(target_os = "macos")]
mod macos;
#[cfg(target_os = "macos")]
pub use macos::{Clipboard, Error};