28 lines
514 B
Swift
28 lines
514 B
Swift
|
|
// swift-tools-version: 5.9
|
||
|
|
|
||
|
|
import PackageDescription
|
||
|
|
|
||
|
|
let package = Package(
|
||
|
|
name: "swiftsupport",
|
||
|
|
platforms: [
|
||
|
|
.iOS(.v17),
|
||
|
|
.macOS(.v14),
|
||
|
|
.watchOS(.v10)
|
||
|
|
],
|
||
|
|
products: [
|
||
|
|
.library(
|
||
|
|
name: "SwiftSupport",
|
||
|
|
targets: ["SwiftSupport"]
|
||
|
|
)
|
||
|
|
],
|
||
|
|
targets: [
|
||
|
|
.target(
|
||
|
|
name: "SwiftSupport"
|
||
|
|
),
|
||
|
|
.testTarget(
|
||
|
|
name: "SwiftSupportTests",
|
||
|
|
dependencies: ["SwiftSupport"]
|
||
|
|
)
|
||
|
|
]
|
||
|
|
)
|