-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.rs
More file actions
16 lines (13 loc) · 711 Bytes
/
build.rs
File metadata and controls
16 lines (13 loc) · 711 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
fn main() {
// The wrapper should first be built via `make wrapper` in the wrapper dir.
println!("cargo:rustc-link-search=wrapper");
println!("cargo:rustc-link-lib=static=wrapper");
println!("cargo:rustc-link-search=rdkit/lib");
println!("cargo:rustc-link-lib=static=RDKitSmilesParse_static");
println!("cargo:rustc-link-lib=static=RDKitGraphMol_static");
println!("cargo:rustc-link-lib=static=RDKitRDGeneral_static");
println!("cargo:rustc-link-lib=static=RDKitRDGeometryLib_static");
println!("cargo:rustc-link-lib=static=RDKitRingDecomposerLib_static");
println!("cargo:rustc-link-lib=static=RDKitDataStructs_static");
println!("cargo:rustc-link-lib=stdc++");
}