mirror of
https://github.com/mii443/usls.git
synced 2025-08-22 15:45:41 +00:00
11 lines
268 B
Rust
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(())
|
|
}
|