mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
44 lines
845 B
Swift
44 lines
845 B
Swift
// swift-tools-version:5.10
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "Account",
|
|
platforms: [.macOS(.v13), .iOS(.v17)],
|
|
products: [
|
|
.library(
|
|
name: "Account",
|
|
type: .dynamic,
|
|
targets: ["Account"]),
|
|
],
|
|
dependencies: [
|
|
.package(path: "../Articles"),
|
|
.package(path: "../ArticlesDatabase"),
|
|
.package(path: "../Secrets"),
|
|
.package(path: "../SyncDatabase"),
|
|
.package(path: "../RSWeb"),
|
|
.package(path: "../RSParser"),
|
|
.package(path: "../RSCore"),
|
|
.package(path: "../RSDatabase"),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "Account",
|
|
dependencies: [
|
|
"RSCore",
|
|
"RSDatabase",
|
|
"RSParser",
|
|
"RSWeb",
|
|
"Articles",
|
|
"ArticlesDatabase",
|
|
"Secrets",
|
|
"SyncDatabase",
|
|
]),
|
|
.testTarget(
|
|
name: "AccountTests",
|
|
dependencies: ["Account"],
|
|
resources: [
|
|
.copy("JSON"),
|
|
]),
|
|
]
|
|
)
|