nvim-oxi/build.rs
2024-04-23 14:53:12 +02:00

13 lines
276 B
Rust

#[cfg(not(any(
feature = "neovim-0-8",
feature = "neovim-0-9",
feature = "neovim-nightly"
)))]
compile_error!(
"You must enable one of the features: neovim-0-8, neovim-0-9, \
neovim-nightly"
);
fn main() {
println!("cargo:rerun-if-changed=build");
}