esp32_gps_display/build.rs

6 lines
189 B
Rust
Raw Normal View History

2023-07-14 11:12:43 +00:00
// Necessary because of this issue: https://github.com/rust-lang/cargo/issues/9641
fn main() -> Result<(), Box<dyn std::error::Error>> {
embuild::espidf::sysenv::output();
2023-07-14 11:12:43 +00:00
Ok(())
}