update
This commit is contained in:
8
.gitignore
vendored
Normal file
8
.gitignore
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
.DS_Store
|
||||
/.build
|
||||
/Packages
|
||||
xcuserdata/
|
||||
DerivedData/
|
||||
.swiftpm/configuration/registries.json
|
||||
.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata
|
||||
.netrc
|
||||
23
Package.swift
Normal file
23
Package.swift
Normal 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"
|
||||
),
|
||||
]
|
||||
)
|
||||
Reference in New Issue
Block a user