-
-
Notifications
You must be signed in to change notification settings - Fork 384
Expand file tree
/
Copy pathPackage.swift
More file actions
24 lines (22 loc) · 686 Bytes
/
Package.swift
File metadata and controls
24 lines (22 loc) · 686 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// swift-tools-version:6.0
import PackageDescription
let package = Package(
name: "SwiftSoup",
platforms: [.macOS(.v10_15), .iOS(.v13), .tvOS(.v13), .watchOS(.v6)],
products: [
.library(name: "SwiftSoup", targets: ["SwiftSoup"]),
.executable(name: "SwiftSoupProfile", targets: ["SwiftSoupProfile"])
],
targets: [
.target(
name: "SwiftSoup",
path: "Sources"),
.executableTarget(
name: "SwiftSoupProfile",
dependencies: ["SwiftSoup"],
path: "Tools/SwiftSoupProfile"),
.testTarget(
name: "SwiftSoupTests",
dependencies: ["SwiftSoup"])
]
)