1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-12-04 19:37:58 +03:00
vimr/Ignore/Package.swift
2023-10-30 14:48:30 -07:00

24 lines
611 B
Swift

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