reintroduce lock

master
Ales Katona 6 years ago
parent a1efe9d3b5
commit 9c325e79d3
Signed by: almindor
GPG Key ID: 08C459E2D8ABB7E8

@ -4,6 +4,11 @@ use crate::types::{InputCause, InputTypeFlags, ProcessingResult};
pub mod types;
// error out specifically if no backend is chosen
#[cfg(not(any(feature="backend_piston", feature="backend_gilrs")))]
compile_error!("No backend selected, use features=<backend> in Cargo.toml or --features <backend> when building directly.");
#[cfg(feature="backend_piston")]
pub mod backend_piston;
#[cfg(feature="backend_gilrs")]

Loading…
Cancel
Save