add swift transport support package
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
// 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"]
|
||||
)
|
||||
]
|
||||
)
|
||||
Reference in New Issue
Block a user