Files
sphinx-key/sphinx-key/build.rs
irriden f9c50853b1 upgrade to ESP_IDF release/v5.0
also mirror all the config files to the ones created with this command:
cargo generate --git https://github.com/esp-rs/esp-idf-template cargo

just make sure to select a version 5 esp idf in the prompts
2023-06-15 17:05:46 +00:00

7 lines
271 B
Rust

// Necessary because of this issue: https://github.com/rust-lang/cargo/issues/9641
fn main() -> Result<(), Box<dyn std::error::Error>> {
embuild::build::CfgArgs::output_propagated("ESP_IDF")?;
embuild::build::LinkArgs::output_propagated("ESP_IDF")?;
Ok(())
}