24 lines
614 B
Swift
24 lines
614 B
Swift
// swift-tools-version: 5.10
|
|
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "Blainks",
|
|
platforms: [
|
|
.iOS(.v13)
|
|
],
|
|
products: [
|
|
.library(
|
|
name: "Blainks",
|
|
targets: ["Blainks"]
|
|
)
|
|
],
|
|
targets: [
|
|
.binaryTarget(
|
|
name: "Blainks",
|
|
url: "https://blainks.com/distribution/ios/1.5.8/Blainks.xcframework.zip",
|
|
checksum: "5d97760a67a98a9fab07c54d4fc1473b06558a01dc2e4f37e604a3e3ad8ab92e"
|
|
)
|
|
]
|
|
) |