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.0/Blainks.xcframework.zip",
|
|
checksum: "8901d35670de0356cf0acef0960ed395079f6ae63653fe6720b174e7c78db5f5"
|
|
)
|
|
]
|
|
) |