hippofish/packages/backend-rs/build.rs

10 lines
195 B
Rust
Raw Normal View History

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