Files
sphinx-key/factory/build.rs
irriden 7093b43291 update factory to ESP_IDF v5.0
also update cc compiler pointer in main app
also set a new pin for the nightly version
2023-06-16 01:26:15 +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(())
}