Update the C++ idevice.h header on build

This commit is contained in:
Jackson Coxson
2025-10-22 10:26:25 -06:00
parent 5ed2144d9e
commit 7805f943af

View File

@@ -47,4 +47,7 @@ fn main() {
f.write_all(b"\n\n\n").unwrap();
f.write_all(&h.into_bytes())
.expect("failed to append plist.h");
let f = std::fs::read_to_string("idevice.h").unwrap();
std::fs::write("../cpp/include/idevice.h", f).unwrap();
}