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"])]
|
||
|
)
|
||
|
]
|
||
|
)
|