Add persistent local agent tools

This commit is contained in:
Georg Bauer
2026-07-25 14:57:17 +02:00
parent 668d8b787e
commit 4a45735072
20 changed files with 3139 additions and 37 deletions

View File

@@ -13,6 +13,12 @@ fn main() {
.flag("-fobjc-arc")
.opt_level(3)
.compile("ds4_metal");
println!("cargo:rerun-if-changed=native/web");
cc::Build::new()
.include("native/web")
.file("native/web/ds4_web.c")
.opt_level(2)
.compile("ds4_web");
println!("cargo:rustc-link-lib=framework=Foundation");
println!("cargo:rustc-link-lib=framework=Metal");
}