oxigdal-embedded 0.1.3

Embedded systems support for OxiGDAL - no_std compatible geospatial processing for ARM, RISC-V, and ESP32
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Build script for oxigdal-embedded
//!
//! Declares custom cfg conditions for ESP32 variants

fn main() {
    // Declare custom cfg conditions for ESP32 variants
    // These are set by esp-hal/esp-idf toolchains when targeting ESP32 chips
    println!("cargo::rustc-check-cfg=cfg(esp32)");
    println!("cargo::rustc-check-cfg=cfg(esp32s2)");
    println!("cargo::rustc-check-cfg=cfg(esp32s3)");
    println!("cargo::rustc-check-cfg=cfg(esp32c3)");
    println!("cargo::rustc-check-cfg=cfg(esp32c6)");
    println!("cargo::rustc-check-cfg=cfg(esp32h2)");
}