1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-11-27 14:14:19 +03:00
vimr/Ignore/Package.swift
2024-04-26 14:27:46 +02:00

24 lines
611 B
Swift

// swift-tools-version:5.9
import PackageDescription
let package = Package(
name: "Ignore",
platforms: [.macOS(.v12)],
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: "13.3.0"),
],
targets: [
.target(name: "Ignore", dependencies: [.product(name: "WildmatchC", package: "misc.swift")]),
.testTarget(
name: "IgnoreTests",
dependencies: ["Ignore", "Nimble"],
resources: [.copy("Resources")]
),
]
)