mirror of
https://github.com/esp-rs/esp-hal.git
synced 2025-09-28 04:40:52 +00:00
7 lines
172 B
Rust
7 lines
172 B
Rust
use std::{env, path::PathBuf};
|
|
|
|
fn main() {
|
|
let out_dir = PathBuf::from(env::var("OUT_DIR").unwrap());
|
|
println!("cargo:rustc-link-search={}", out_dir.display());
|
|
}
|