7 lines
144 B
Rust
7 lines
144 B
Rust
//! Build script for rtx-bindings
|
|
|
|
fn main() {
|
|
// Simple build script for C API bindings
|
|
println!("cargo:rerun-if-changed=build.rs");
|
|
}
|