mirror of
https://github.com/rustdesk/rustdesk.git
synced 2024-12-19 14:37:51 +08:00
12 lines
320 B
Rust
12 lines
320 B
Rust
#[cfg(windows)]
|
|
fn main() {
|
|
println!("cargo:rustc-link-search=native=./");
|
|
println!("cargo:rustc-link-lib=static=sciter.static");
|
|
println!("cargo:rustc-link-lib=comdlg32");
|
|
println!("cargo:rustc-link-lib=wininet");
|
|
println!("cargo:rustc-link-lib=windowscodecs");
|
|
}
|
|
|
|
#[cfg(not(windows))]
|
|
fn main() {}
|