ruapu/rust/build.rs
Cocoa 550a9caa0f
added rust support (#50)
* added rust support

* move binding files to their respective directories

* updated README.md

* updated pypi ci package-dir

* add ruapu::rua() for rust
2024-02-28 23:34:26 +08:00

7 lines
158 B
Rust

fn main() {
cc::Build::new()
.file("src/ruapu-binding.c")
.compile("ruapu-rs");
println!("cargo:rerun-if-changed=ruapu-binding.c");
}