Files
usls/build.rs
2025-04-27 13:01:51 +08:00

11 lines
268 B
Rust

use std::io::Result;
fn main() -> Result<()> {
prost_build::compile_protos(&["src/utils/onnx.proto3"], &["src"])?;
#[cfg(any(target_os = "macos", target_os = "ios", target_os = "tvos"))]
println!("cargo:rustc-link-arg=-fapple-link-rtlib");
Ok(())
}