mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2024-12-11 17:06:46 +01:00
20 lines
317 B
Swift
20 lines
317 B
Swift
|
// swift-tools-version:5.10
|
||
|
import PackageDescription
|
||
|
|
||
|
let package = Package(
|
||
|
name: "RSTree",
|
||
|
products: [
|
||
|
.library(
|
||
|
name: "RSTree",
|
||
|
type: .dynamic,
|
||
|
targets: ["RSTree"]),
|
||
|
],
|
||
|
targets: [
|
||
|
.target(
|
||
|
name: "RSTree",
|
||
|
dependencies: [],
|
||
|
swiftSettings: [.unsafeFlags(["-warnings-as-errors"])]
|
||
|
)
|
||
|
]
|
||
|
)
|