Work on adding a puppet for the server side aswell

This commit is contained in:
Michael Mikovsky
2025-08-24 10:59:46 -06:00
parent 5f38d85e6c
commit 319c0fc222
13 changed files with 255 additions and 19 deletions
+7
View File
@@ -0,0 +1,7 @@
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");
}