wyoming-whisper-rs/build.rs
Stephen M. Coakley 7663f97372 cargo fmt
2024-09-11 09:52:47 -05:00

8 lines
161 B
Rust

use std::env;
fn main() {
println!(
"cargo:rustc-env=WHISPER_CPP_VERSION={}",
env::var("DEP_WHISPER_WHISPER_CPP_VERSION").unwrap()
);
}