I am looking for a way to add multiple SPM packages to an Xcode project (similar to how cocoapods works using it's podfile and calling pod install)
I know I can manually go to File->Add Package Dependencies... to manually add one package at a time.
When building a SPM package I can add dependencies through the Package.swift file. I tried adding a Package.swift to a regular Xcode project but there seems to be no way for Xcode to used that file when working with iOS projects. There also doesn't appear to be a command for Xcode's command line build tools to update an Xcode project using a Package.swift file?
Is there any other way for me to add SPM packages to an iOS Xcode project?
- Added a
Package.swift(expected Xcode to read dependencies as it does when creating a Swift Package) - Searched documentation for Xcode command line tools (expected to find a command for adding a package to an Xcode project)