1
1
mirror of https://github.com/qvacua/vimr.git synced 2024-12-03 00:54:42 +03:00
vimr/Commons/Package.swift

30 lines
556 B
Swift
Raw Normal View History

2020-08-19 00:07:22 +03:00
// swift-tools-version:5.3
import PackageDescription
let package = Package(
name: "Commons",
platforms: [.macOS(.v10_13)],
products: [
.library(
name: "Commons",
targets: ["Commons"]),
],
2020-08-19 01:04:46 +03:00
dependencies: [
.package(url: "https://github.com/Quick/Nimble", .upToNextMinor(from: "8.1.1")),
],
2020-08-19 00:07:22 +03:00
targets: [
.target(
name: "Commons",
dependencies: []
),
.testTarget(
name: "CommonsTests",
2020-08-19 01:42:34 +03:00
dependencies: ["Commons", "Nimble"],
resources: [
.copy("Resources")
]
2020-08-19 00:07:22 +03:00
),
]
)