12 lines
516 B
Rust
12 lines
516 B
Rust
/******************************************************************************/
|
|
/* SlunkCrypt, by LoRd_MuldeR <MuldeR2@GMX.de> */
|
|
/* This work has been released under the CC0 1.0 Universal license! */
|
|
/******************************************************************************/
|
|
|
|
use std::env;
|
|
|
|
fn main() {
|
|
println!(r"cargo:rustc-link-search={}/../../libslunkcrypt/lib", env::var("CARGO_MANIFEST_DIR").unwrap());
|
|
println!(r"cargo:rustc-link-lib=slunkcrypt-1");
|
|
}
|