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.6/Blainks.xcframework.zip",
|
|
checksum: "e10475d33e4d09f63dfcad548d6b0ddbb2f1036864e23d0e0af5fbfac07be77e"
|
|
)
|
|
]
|
|
) |