NetNewsWire/Modules/Parser/Package.swift

92 lines
2.0 KiB
Swift
Raw Normal View History

// 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: "Parser",
platforms: [.macOS(.v14), .iOS(.v17)],
products: [
// Products define the executables and libraries a package produces, and make them visible to other packages.
.library(
name: "FeedParser",
type: .dynamic,
targets: ["FeedParser"]),
2024-08-27 05:53:57 +02:00
.library(
name: "SAX",
type: .dynamic,
2024-08-27 07:39:46 +02:00
targets: ["SAX"]),
.library(
name: "OPMLParser",
type: .dynamic,
2024-09-02 21:03:24 +02:00
targets: ["OPMLParser"]),
2024-09-21 21:16:09 +02:00
.library(
name: "HTMLParser",
type: .dynamic,
targets: ["HTMLParser"]),
2024-09-02 21:03:24 +02:00
.library(
name: "DateParser",
type: .dynamic,
targets: ["DateParser"])
],
dependencies: [
2024-09-02 21:03:24 +02:00
.package(path: "../FoundationExtras"),
],
targets: [
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
// Targets can depend on other targets in this package, and on products in packages this package depends on.
2024-08-27 07:39:46 +02:00
.target(
name: "OPMLParser",
dependencies: [
"SAX"
],
swiftSettings: [
.enableExperimentalFeature("StrictConcurrency")
]),
2024-09-21 21:16:09 +02:00
.target(
name: "HTMLParser",
dependencies: [
2024-09-24 06:13:55 +02:00
"FoundationExtras",
2024-09-21 21:16:09 +02:00
"SAX"
],
swiftSettings: [
.enableExperimentalFeature("StrictConcurrency")
]),
.target(
name: "FeedParser",
2024-08-27 05:53:57 +02:00
dependencies: [
2024-09-02 21:03:24 +02:00
"SAX",
"FoundationExtras",
"DateParser"
2024-08-27 05:53:57 +02:00
],
swiftSettings: [
.enableExperimentalFeature("StrictConcurrency")
]),
.target(
name: "SAX",
2024-09-24 06:13:55 +02:00
dependencies: [
"FoundationExtras"
],
2024-04-17 06:48:17 +02:00
swiftSettings: [
.enableExperimentalFeature("StrictConcurrency")
]),
2024-09-02 21:03:24 +02:00
.target(
name: "DateParser",
dependencies: [],
swiftSettings: [
.enableExperimentalFeature("StrictConcurrency")
]),
.testTarget(
name: "ParserTests",
dependencies: [
"FeedParser",
"OPMLParser",
"DateParser",
"HTMLParser"
],
exclude: ["Info.plist"],
resources: [.copy("Resources")]),
]
)