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.4.2/Blainks.xcframework.zip",
|
|
checksum: "617e4699ea990639c5754e39f65c246ace8a0a4c4e60d1051946fedcd9733bcb"
|
|
)
|
|
]
|
|
) |