mirror of
https://github.com/CherretGit/zaprett-app.git
synced 2025-12-10 05:29:37 +05:00
9 lines
258 B
Rust
9 lines
258 B
Rust
use cmake::Config;
|
|
|
|
fn main() {
|
|
let dst = Config::new(".").build_target("byedpi").build();
|
|
let lib_path = dst.join("build");
|
|
println!("cargo:rustc-link-search=native={}", lib_path.display());
|
|
println!("cargo:rustc-link-lib=static=byedpi");
|
|
}
|