8 lines
187 B
Rust
8 lines
187 B
Rust
fn main() {
|
|
println!(
|
|
"cargo:rustc-link-search=native={}",
|
|
std::env::var("OUT_DIR").unwrap()
|
|
);
|
|
println!("cargo:rustc-link-arg=/DEF:mhypbase/mhypbase.def");
|
|
}
|