├── .gitignore ├── .swiftpm └── xcode │ └── xcshareddata │ └── xcschemes │ ├── spm-to-xcframework-Package.xcscheme │ └── spm-to-xcframework.xcscheme ├── Package.resolved ├── Package.swift ├── README.md ├── Sources └── spm-to-xcframework │ ├── CommandBuilder.swift │ ├── CreateXCFramework.swift │ └── Platform.swift └── Tests └── spm-to-xcframework-tests └── CommandBuilderTests.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstfy/spm-to-xcframework/HEAD/.gitignore -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/spm-to-xcframework-Package.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstfy/spm-to-xcframework/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/spm-to-xcframework-Package.xcscheme -------------------------------------------------------------------------------- /.swiftpm/xcode/xcshareddata/xcschemes/spm-to-xcframework.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstfy/spm-to-xcframework/HEAD/.swiftpm/xcode/xcshareddata/xcschemes/spm-to-xcframework.xcscheme -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstfy/spm-to-xcframework/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstfy/spm-to-xcframework/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstfy/spm-to-xcframework/HEAD/README.md -------------------------------------------------------------------------------- /Sources/spm-to-xcframework/CommandBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstfy/spm-to-xcframework/HEAD/Sources/spm-to-xcframework/CommandBuilder.swift -------------------------------------------------------------------------------- /Sources/spm-to-xcframework/CreateXCFramework.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstfy/spm-to-xcframework/HEAD/Sources/spm-to-xcframework/CreateXCFramework.swift -------------------------------------------------------------------------------- /Sources/spm-to-xcframework/Platform.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstfy/spm-to-xcframework/HEAD/Sources/spm-to-xcframework/Platform.swift -------------------------------------------------------------------------------- /Tests/spm-to-xcframework-tests/CommandBuilderTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mstfy/spm-to-xcframework/HEAD/Tests/spm-to-xcframework-tests/CommandBuilderTests.swift --------------------------------------------------------------------------------