geogram_predicates 0.2.1

Rust bindings to the Geogram library's predicates module
Documentation
1
2
3
4
5
6
7
8
9
10
11
fn main() {
    cxx_build::bridge("src/lib.rs")
        .file("src/geogram_ffi.cpp")
        .file("include/geogram_predicates_psm/Predicates_psm.cpp") // we need to add the ..._psm.cpp to the compile list, just as when compiling in c++
        .std("c++20")
        .compile("cxx-lab");

    println!("cargo:rerun-if-changed=src/lib.rs");
    println!("cargo:rerun-if-changed=src/geogram_ffi.cpp");
    println!("cargo:rerun-if-changed=include/geogram_ffi.h");
}