hippofish/packages/backend-rs/build.rs

9 lines
198 B
Rust
Raw Normal View History

fn main() {
// watch the version in the project root package.json
println!("cargo:rerun-if-changed=../../package.json");
// napi
#[cfg(feature = "napi")]
2023-05-25 08:34:48 +02:00
napi_build::setup();
}