25 lines
498 B
Swift
25 lines
498 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: "OcambaHood",
|
||
|
platforms: [
|
||
|
.iOS(.v12)
|
||
|
],
|
||
|
products: [
|
||
|
.library(
|
||
|
name: "OcambaHood",
|
||
|
targets: ["OcambaHood"]
|
||
|
)
|
||
|
],
|
||
|
targets: [
|
||
|
.binaryTarget(
|
||
|
name: "OcambaHood",
|
||
|
path: "./OcambaHood.xcframework"
|
||
|
),
|
||
|
]
|
||
|
)
|