mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-05-23 13:43:43 +02:00
6 lines
217 B
Rust
6 lines
217 B
Rust
fn main() {
|
|
let d = env!("CARGO_MANIFEST_DIR");
|
|
println!("cargo:rustc-link-search=native={}/../build/core", d);
|
|
println!("cargo:rustc-link-lib=static=zt_core");
|
|
println!("cargo:rustc-link-lib=c++");
|
|
}
|