From 8846f9a429b63c4af43c0af432c9061078710fc4 Mon Sep 17 00:00:00 2001 From: Jackson Coxson Date: Mon, 25 Aug 2025 16:12:34 -0600 Subject: [PATCH] Copy idevice.h to cpp include folder during xcode build Move to include folder --- cpp/xcode_build_rust.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cpp/xcode_build_rust.sh b/cpp/xcode_build_rust.sh index eab5b62..c67e474 100755 --- a/cpp/xcode_build_rust.sh +++ b/cpp/xcode_build_rust.sh @@ -1,5 +1,7 @@ #!/bin/sh +cp ../ffi/idevice.h include/ + # This script builds a Rust library for use in an Xcode project. # It's designed to be used as a "Run Script" build phase on a native Xcode target. # It handles multiple architectures by building for each and combining them with `lipo`.