21 lines
411 B
Swift
21 lines
411 B
Swift
// swift-tools-version: 5.9
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "DDYSClient",
|
|
platforms: [
|
|
.iOS(.v17),
|
|
.macOS(.v14),
|
|
],
|
|
dependencies: [
|
|
.package(path: "LocalPackages/SwiftSoup"),
|
|
],
|
|
targets: [
|
|
.executableTarget(
|
|
name: "DDYSClient",
|
|
dependencies: ["SwiftSoup"],
|
|
path: "DDYSClient"
|
|
),
|
|
]
|
|
)
|