mirror of
https://github.com/Astatin3/syscall-stream-rs.git
synced 2026-06-09 00:18:01 -06:00
8 lines
244 B
Rust
8 lines
244 B
Rust
|
|
fn main() {
|
||
|
|
let dst = cmake::build("syscall_intercept");
|
||
|
|
|
||
|
|
println!("cargo:rustc-link-search=native={}/lib", dst.display());
|
||
|
|
println!("cargo:rustc-link-lib=static=syscall_intercept");
|
||
|
|
println!("cargo:rustc-link-lib=capstone");
|
||
|
|
}
|