mirror of
https://github.com/fluencelabs/wasmer
synced 2024-12-13 22:25:40 +00:00
12 lines
318 B
Rust
12 lines
318 B
Rust
use cmake::Config;
|
|
|
|
fn main() {
|
|
#[cfg(target_os = "windows")]
|
|
{
|
|
let project_name = "exception_handling";
|
|
let dst = Config::new(project_name).build();
|
|
println!("cargo:rustc-link-search=native={}", dst.display());
|
|
println!("cargo:rustc-link-lib=static={}", project_name);
|
|
}
|
|
}
|