mirror of
https://github.com/noib3/nvim-oxi.git
synced 2025-08-04 19:08:31 +00:00
13 lines
278 B
Rust
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");
|
|
}
|