NetNewsWire/Modules/Parser/Package.swift

64 lines
1.5 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,
targets: ["OPMLParser"])
],
dependencies: [
],
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")
]),
.target(
name: "FeedParser",
2024-08-27 05:53:57 +02:00
dependencies: [
"SAX"
],
swiftSettings: [
.enableExperimentalFeature("StrictConcurrency")
]),
.target(
name: "SAX",
2024-08-19 03:18:25 +02:00
dependencies: [],
2024-04-17 06:48:17 +02:00
swiftSettings: [
.enableExperimentalFeature("StrictConcurrency")
]),
.testTarget(
name: "FeedParserTests",
dependencies: ["FeedParser"],
exclude: ["Info.plist"],
resources: [.copy("Resources")]),
2024-08-27 07:39:46 +02:00
.testTarget(
name: "OPMLParserTests",
dependencies: ["OPMLParser"],
resources: [.copy("Resources")]),
]
)