22 lines
408 B
Swift
22 lines
408 B
Swift
// swift-tools-version:5.3
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "OpenSSL",
|
|
platforms: [
|
|
.iOS(.v9),
|
|
.macOS(.v10_10)
|
|
],
|
|
products: [
|
|
.library(
|
|
name: "OpenSSL",
|
|
targets: ["OpenSSL"]),
|
|
],
|
|
targets: [
|
|
.binaryTarget(
|
|
name: "OpenSSL",
|
|
path: "Frameworks/OpenSSL.xcframework"
|
|
)
|
|
]
|
|
) |