mirror of
https://github.com/esp-rs/esp-hal.git
synced 2025-09-28 04:40:52 +00:00

* Add the `esp-ieee802154` package to the repo * Add examples for `esp-ieee802154` package
7 lines
167 B
Rust
7 lines
167 B
Rust
use std::{env, path::PathBuf};
|
|
|
|
fn main() {
|
|
let out = PathBuf::from(env::var_os("OUT_DIR").unwrap());
|
|
println!("cargo:rustc-link-search={}", out.display());
|
|
}
|