libcint 0.2.0

FFI binding and GTO wrapper for libcint (C library)
Documentation
1
2
3
4
5
6
7
8
9
10
fn main() {
    // everything should have been prepared by libcint-src/build.rs
    println!("cargo:rustc-link-lib=static=cecp");
    if cfg!(feature = "static") {
        println!("cargo:rustc-link-lib=static=cint");
        println!("cargo:rustc-link-lib=quadmath");
    } else {
        println!("cargo:rustc-link-lib=cint");
    }
}