This repository has been archived on 2026-06-05. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
Rustdesk/libs/rust-sciter/build.rs
T
2021-05-23 10:55:19 +08:00

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() {}