nvim-oxi/build.rs
2024-05-28 09:18:13 +08:00

13 lines
278 B
Rust

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