mirror of
https://github.com/Ranchero-Software/NetNewsWire
synced 2025-08-12 06:26:36 +00:00
22 lines
403 B
Swift
22 lines
403 B
Swift
// swift-tools-version: 5.7.1
|
|
|
|
import PackageDescription
|
|
|
|
let package = Package(
|
|
name: "Core",
|
|
platforms: [.macOS(.v13), .iOS(.v16)],
|
|
products: [
|
|
.library(
|
|
name: "Core",
|
|
targets: ["Core"]),
|
|
],
|
|
targets: [
|
|
.target(
|
|
name: "Core"),
|
|
.testTarget(
|
|
name: "CoreTests",
|
|
dependencies: ["Core"]
|
|
),
|
|
]
|
|
)
|