1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-12-18 11:11:34 +03:00
vimr/Ignore/Package.swift

24 lines
614 B
Swift

// swift-tools-version:5.6
import PackageDescription
let package = Package(
name: "Ignore",
platforms: [.macOS(.v10_13)],
products: [
.library(name: "Ignore", targets: ["Ignore"]),
],
dependencies: [
.package(url: "https://github.com/qvacua/misc.swift", exact: "0.0.1"),
.package(url: "https://github.com/Quick/Nimble", from: "10.0.0"),
],
targets: [
.target(name: "Ignore", dependencies: [.product(name: "WildmatchC", package: "misc.swift")]),
.testTarget(
name: "IgnoreTests",
dependencies: ["Ignore", "Nimble"],
resources: [.copy("Resources")]
),
]
)