From 4000ec04d89b9bd77995960d2a9da8fcad55e003 Mon Sep 17 00:00:00 2001 From: Kirill Chibisov Date: Fri, 13 Mar 2020 03:33:12 +0300 Subject: Add option to pick Linux/BSD backends This commit adds two cargo features `x11` and `wayland` to pick Linux/BSD backends, with both enabled by default. Fixes #3340. --- alacritty/build.rs | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'alacritty/build.rs') diff --git a/alacritty/build.rs b/alacritty/build.rs index 16f3a2b3..b2ee8b6e 100644 --- a/alacritty/build.rs +++ b/alacritty/build.rs @@ -22,6 +22,10 @@ use std::path::Path; use embed_resource; fn main() { + if cfg!(not(any(feature = "x11", feature = "wayland", target_os = "macos", windows))) { + panic!("at least one of the \"x11\"/\"wayland\" features must be enabled"); + } + let hash = rustc_tools_util::get_commit_hash().unwrap_or_default(); println!("cargo:rustc-env=GIT_HASH={}", hash); -- cgit