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:
parent
a2cd4b647c
commit
398e31fa37
4 changed files with 18 additions and 10 deletions
|
|
@ -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};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue