ggmath 0.16.3

A linear algebra library for games and graphics with generic SIMD types.
Documentation
1
2
3
4
5
6
7
8
9
10
11
fn main() {
    println!("cargo::rustc-check-cfg=cfg(backend)");
    if cfg!(feature = "std") || cfg!(feature = "libm") {
        println!("cargo::rustc-cfg=backend");
    }

    println!("cargo::rustc-check-cfg=cfg(assertions)");
    if cfg!(feature = "assertions") || cfg!(debug_assertions) && !cfg!(feature = "no-assertions") {
        println!("cargo::rustc-cfg=assertions");
    }
}