I want to be able to take an internal SPM package, which depends on several other internal (and one external) SPM packages, and compile it into an XCFramework, using a series of xcodebuild
like you would for a framework project. For example, I have PackageB
, which references PackageA
, and I'm trying to build PackageB.xcframework
. The first step would be:
xcodebuild -scheme PackageB -destination "generic/platform=iOS" -configuration Release ARCHS="arm64" BUILD_DIR="./Build
The tool's output indicates that the dependency packages are being resolved, but they are then not recognized by the compiler (i.e. code in PackageB
which references PackageA
will not compile because PackageA
is unknown at that point).
Thanks for any pointers.