mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2024-12-23 16:20:53 +01:00
91 lines
2.1 KiB
Swift
91 lines
2.1 KiB
Swift
// 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"]),
|
|
.library(
|
|
name: "SAX",
|
|
type: .dynamic,
|
|
targets: ["SAX"]),
|
|
.library(
|
|
name: "OPMLParser",
|
|
type: .dynamic,
|
|
targets: ["OPMLParser"]),
|
|
.library(
|
|
name: "HTMLParser",
|
|
type: .dynamic,
|
|
targets: ["HTMLParser"]),
|
|
.library(
|
|
name: "DateParser",
|
|
type: .dynamic,
|
|
targets: ["DateParser"])
|
|
],
|
|
dependencies: [
|
|
.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.
|
|
.target(
|
|
name: "OPMLParser",
|
|
dependencies: [
|
|
"SAX"
|
|
],
|
|
swiftSettings: [
|
|
.enableExperimentalFeature("StrictConcurrency")
|
|
]),
|
|
.target(
|
|
name: "HTMLParser",
|
|
dependencies: [
|
|
"SAX"
|
|
],
|
|
swiftSettings: [
|
|
.enableExperimentalFeature("StrictConcurrency")
|
|
]),
|
|
.target(
|
|
name: "FeedParser",
|
|
dependencies: [
|
|
"SAX",
|
|
"FoundationExtras",
|
|
"DateParser"
|
|
],
|
|
swiftSettings: [
|
|
.enableExperimentalFeature("StrictConcurrency")
|
|
]),
|
|
.target(
|
|
name: "SAX",
|
|
dependencies: [],
|
|
swiftSettings: [
|
|
.enableExperimentalFeature("StrictConcurrency")
|
|
]),
|
|
.target(
|
|
name: "DateParser",
|
|
dependencies: [],
|
|
swiftSettings: [
|
|
.enableExperimentalFeature("StrictConcurrency")
|
|
]),
|
|
.testTarget(
|
|
name: "FeedParserTests",
|
|
dependencies: ["FeedParser"],
|
|
exclude: ["Info.plist"],
|
|
resources: [.copy("Resources")]),
|
|
.testTarget(
|
|
name: "OPMLParserTests",
|
|
dependencies: ["OPMLParser"],
|
|
resources: [.copy("Resources")]),
|
|
.testTarget(
|
|
name: "DateParserTests",
|
|
dependencies: ["DateParser"])
|
|
]
|
|
)
|
|
|