occt_path

Function occt_path 

Source
pub fn occt_path() -> PathBuf
Expand description

Get the path to the OCCT library installation directory to be used in build scripts.

Only valid during build (cargo clean removes these files).

Examples found in repository?
examples/print_paths.rs (line 2)
1fn main() {
2    println!("occt_path: {}", occt_sys::occt_path().to_str().unwrap());
3}