26 lines
774 B
Swift
26 lines
774 B
Swift
// swift-tools-version:5.3
|
|
// The swift-tools-version declares the minimum version of Swift required to build this package.
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "OpenSSL",
|
|
platforms: [
|
|
.macOS(.v10_10), .iOS(.v9)
|
|
],
|
|
products: [
|
|
// Products define the executables and libraries produced by a package, and make them visible to other packages.
|
|
.library(
|
|
name: "OpenSSL",
|
|
targets: ["OpenSSL"]
|
|
)
|
|
],
|
|
targets: [
|
|
.binaryTarget(
|
|
name: "OpenSSL",
|
|
url: "https://github.com/OuterCorner/OpenSSL/releases/download/1.2.1/OpenSSL.xcframework.zip",
|
|
checksum: "c39deefb852b1604a5028bf7f71ff92d9e5c78fc6725d589173e092f22b902b6"
|
|
)
|
|
]
|
|
)
|