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
611 B
Swift
Raw Normal View History

// swift-tools-version:5.7
import PackageDescription
let package = Package(
name: "Ignore",
platforms: [.macOS(.v13)],
products: [
.library(name: "Ignore", targets: ["Ignore"]),
],
dependencies: [
2022-11-03 18:16:36 +03:00
.package(url: "https://github.com/qvacua/misc.swift", exact: "0.2.0"),
2023-11-05 00:01:01 +03:00
.package(url: "https://github.com/Quick/Nimble", from: "13.0.0"),
],
targets: [
.target(name: "Ignore", dependencies: [.product(name: "WildmatchC", package: "misc.swift")]),
.testTarget(
name: "IgnoreTests",
dependencies: ["Ignore", "Nimble"],
resources: [.copy("Resources")]
),
]
)