This commit is contained in:
2025-07-19 08:36:19 +07:00
parent eb8062de08
commit 147e134c2c
45 changed files with 31 additions and 0 deletions

23
Package.swift Normal file
View File

@ -0,0 +1,23 @@
// swift-tools-version: 6.1
// The swift-tools-version declares the minimum version of Swift required to build this package.
import PackageDescription
let package = Package(
name: "M2Kit",
platforms: [
.iOS(.v15)
],
products: [
.library(
name: "M2Kit",
targets: ["M2Kit"]
),
],
targets: [
.binaryTarget(
name: "M2Kit",
path: "./Frameworks/M2Kit.xcframework"
),
]
)